Merge pull request #297 from blueyed/tag-delete-single-call-to-client-tags

awful.tag.delete: single call to #c:tags()
This commit is contained in:
Emmanuel Lepage Vallée 2015-07-07 16:24:12 -04:00
commit 49bf635017

View file

@ -176,14 +176,15 @@ function tag.delete(target_tag, fallback_tag)
-- Move the clients we can off of this tag.
for _, c in pairs(clients) do
local nb_tags = #c:tags()
-- If a client has only this tag, or stickied clients with
-- nowhere to go, abort.
if (not c.sticky and #c:tags() == 1) or
if (not c.sticky and nb_tags == 1) or
(c.sticky and fallback_tag == nil) then
return
-- If a client has multiple tags, then do not move it to fallback
elseif #c:tags() < 2 then
elseif nb_tags < 2 then
c:tags({fallback_tag})
end
end