awful: bugfix in label

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2008-08-01 10:44:25 +02:00
parent 20af8bdfca
commit 044702569a
1 changed files with 6 additions and 3 deletions

View File

@ -937,9 +937,12 @@ function P.widget.taglist.label.all(t, bg_focus, fg_focus, bg_urgent, fg_urgent)
background = "resize=\"true\" image=\"@AWESOME_ICON_PATH@/taglist/squarefw.png\"" background = "resize=\"true\" image=\"@AWESOME_ICON_PATH@/taglist/squarefw.png\""
elseif bg_urgent and fg_urgent then elseif bg_urgent and fg_urgent then
for k, c in pairs(client.get()) do for k, c in pairs(client.get()) do
if c.urgent and c:istagged(t) then if c:istagged(t) then
bg_color = bg_urgent background = "resize=\"true\" image=\"@AWESOME_ICON_PATH@/taglist/squarew.png\""
fg_color = fg_urgent if c.urgent then
bg_color = bg_urgent
fg_color = fg_urgent
end
end end
end end
end end