Merge pull request #2920 from jcrd/taglist-update

Update taglist more aggressively
This commit is contained in:
mergify[bot] 2019-11-21 10:29:32 +00:00 committed by GitHub
commit 76f8c11776
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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