awful.tag: make viewonly more smart (FS#634)

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2009-09-22 14:09:56 +02:00
parent f347876af4
commit 743603d24d
1 changed files with 4 additions and 2 deletions

View File

@ -252,8 +252,10 @@ end
--- View only a tag.
-- @param t The tag object.
function viewonly(t)
viewnone(t.screen)
t.selected = true
local tags = capi.screen[screen or capi.mouse.screen]:tags()
for _, tag in pairs(tags) do
tag.selected = (t == tag)
end
capi.screen[t.screen]:emit_signal("tag::history::update")
end