Fix check against clients in taglist.

This commit is contained in:
Jason Yan 2014-05-09 00:18:46 -07:00 committed by Uli Schlachter
parent e211190234
commit 3c5a1d44e2
1 changed files with 2 additions and 2 deletions

View File

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