awful.widget: tasklist to update on name changes

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2008-10-21 15:07:18 +02:00
parent fba1a96737
commit bd47652fe0
1 changed files with 2 additions and 1 deletions

View File

@ -253,7 +253,8 @@ function tasklist.new(label, buttons)
hooks.property.register(function (c, prop) hooks.property.register(function (c, prop)
if prop == "urgent" if prop == "urgent"
or prop == "floating" or prop == "floating"
or prop == "icon" then or prop == "icon"
or prop == "name" then
tasklist_update() tasklist_update()
end end
end) end)