From ec72ee1b434c71f1ec5a4ab8435cb418ccbcf8d3 Mon Sep 17 00:00:00 2001 From: Uli Schlachter Date: Fri, 14 Jan 2011 16:12:05 +0100 Subject: [PATCH] Fix naughty I removed textbox' check() function, but forgot to see if anything actually calls it. Just removing the call fixes all problems here. Signed-off-by: Uli Schlachter --- lib/naughty.lua.in | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/naughty.lua.in b/lib/naughty.lua.in index 2652b0d5e..722b838a6 100644 --- a/lib/naughty.lua.in +++ b/lib/naughty.lua.in @@ -358,7 +358,6 @@ function notify(args) local function setText(pattern, replacements) textbox:set_markup(string.format('%s%s', font, title, text:gsub(pattern, replacements))) - textbox:check() end -- First try to set the text while only interpreting
.