Update taglist more aggressively

This commit is contained in:
James Reed 2019-11-20 10:52:55 -07:00
parent 9bc6d4aa40
commit 1e71d9afbd
No known key found for this signature in database
GPG Key ID: 8F79994F6B8378C1
1 changed files with 7 additions and 0 deletions

View File

@ -528,6 +528,13 @@ function taglist.new(args, filter, buttons, style, update_function, base_widget)
for _, tlist in pairs(i) do
tlist._do_taglist_update()
end
else
-- No screen? Update all taglists
for _, list in pairs(instances) do
for _, tlist in pairs(list) do
tlist._do_taglist_update()
end
end
end
end
local uc = function (c) return u(c.screen) end