awful: bugfix in label
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
20af8bdfca
commit
044702569a
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue