Fix check against clients in taglist.

This commit is contained in:
Jason Yan 2014-05-09 00:18:46 -07:00
parent 9fce440078
commit aedcd90d4d
1 changed files with 2 additions and 2 deletions

View File

@ -51,6 +51,7 @@ function taglist.taglist_label(t, args)
local icon local icon
local bg_resize = false local bg_resize = false
local is_selected = false local is_selected = false
local cls = t:clients()
if t.selected then if t.selected then
bg_color = bg_focus bg_color = bg_focus
fg_color = fg_focus fg_color = fg_focus
@ -69,11 +70,10 @@ function taglist.taglist_label(t, args)
end end
end end
end end
if t:clients() == 0 and t.selected and taglist_squares_sel_empty then if #cls == 0 and t.selected and taglist_squares_sel_empty then
bg_image = taglist_squares_sel_empty bg_image = taglist_squares_sel_empty
bg_resize = taglist_squares_resize == "true" bg_resize = taglist_squares_resize == "true"
elseif not is_selected then elseif not is_selected then
local cls = t:clients()
if #cls > 0 then if #cls > 0 then
if taglist_squares_unsel then if taglist_squares_unsel then
bg_image = taglist_squares_unsel bg_image = taglist_squares_unsel