Skip to content

Commit

Permalink
Update taglist when tag.volatile value is changed (#3765)
Browse files Browse the repository at this point in the history
The `volatile` property is supported by the taglist (theme variables
`beautiful.taglist_bg_volatile` and `beautiful.taglist_fg_volatile`)
but taglist is not updated when the property is changed.
  • Loading branch information
kosorin authored Jan 16, 2023
1 parent d5a987d commit b54e50a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/awful/widget/taglist.lua
Original file line number Diff line number Diff line change
Expand Up @@ -711,6 +711,7 @@ function taglist.new(args, filter, buttons, style, update_function, base_widget)
tag.attached_connect_signal(nil, "property::screen", ut)
tag.attached_connect_signal(nil, "property::index", ut)
tag.attached_connect_signal(nil, "property::urgent", ut)
tag.attached_connect_signal(nil, "property::volatile", ut)
capi.client.connect_signal("property::screen", function(c, old_screen)
u(c.screen)
u(old_screen)
Expand Down

0 comments on commit b54e50a

Please sign in to comment.