From 46822d510b6bdacac82bd4bbd74b4241ebc0eb2a Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Fri, 21 Nov 2008 14:41:03 +0100 Subject: [PATCH] naughty: fix font support Signed-off-by: Julien Danjou --- lib/naughty.lua.in | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/naughty.lua.in b/lib/naughty.lua.in index 569c17c8..04686dab 100644 --- a/lib/naughty.lua.in +++ b/lib/naughty.lua.in @@ -203,8 +203,7 @@ function notify(args) local textbox = widget({ type = "textbox", name = "text", align = "flex" }) textbox:buttons({ button({ }, 1, run), button({ }, 3, die) }) - textbox.text = string.format('%s%s', - config.font, title, text) + textbox.text = string.format('%s%s', font, title, text) if config.hover_timeout then textbox.mouse_enter = hover_destroy end -- create iconbox