From 78a1788c6f5812e382025153ae86bd45c1895188 Mon Sep 17 00:00:00 2001 From: Uli Schlachter Date: Fri, 14 Jan 2011 19:06:54 +0100 Subject: [PATCH] Fix a stupid typo, sorry Signed-off-by: Uli Schlachter --- lib/naughty.lua.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/naughty.lua.in b/lib/naughty.lua.in index e00c047b..0da92574 100644 --- a/lib/naughty.lua.in +++ b/lib/naughty.lua.in @@ -360,7 +360,7 @@ function notify(args) textbox:set_markup(string.format('%s%s', font, title, text:gsub(pattern, replacements))) end local function setText() - textbox:set_text(string.format('%s %s', title, text) + textbox:set_text(string.format('%s %s', title, text)) end -- First try to set the text while only interpreting
.