naughty: text-icon separator uses margin now

Signed-off-by: koniu <gkusnierz@gmail.com>
This commit is contained in:
koniu 2008-11-15 18:39:26 +00:00
parent edeabd1a8b
commit e536dbe2ea
1 changed files with 3 additions and 2 deletions

View File

@ -172,7 +172,7 @@ function notify(args)
notification.idx = #notifications[notification.position] + 1
local title = ""
if args.title then title = " " .. args.title .. "\n" end
if args.title then title = args.title .. "\n" end
-- hook destroy
local die = function () destroy(notification) end
@ -188,9 +188,10 @@ function notify(args)
-- create textbox
local textbox = widget({ type = "textbox", name = "text", align = "flex" })
textbox.margin = 20
textbox:buttons({ button({ }, 1, run),
button({ }, 3, die) })
textbox.text = string.format('<span font_desc="%s"><b>%s</b> %s</span>',
textbox.text = string.format('<margin left="10"/><span font_desc="%s"><b>%s</b>%s</span>',
config.font, title, text)
if config.hover_timeout then textbox.mouse_enter = hover_destroy end