Emit property::screen in tag:delete()

Before this commit, the code directly modified the table where the tag's
properties were saved. This commit changes the code to call
awful.tag.setproperty() instead. This function ensures that
property::screen is now also emitted.

Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
Uli Schlachter 2019-11-23 15:34:28 +01:00 committed by Emmanuel Lepage Vallee
parent e3b15b4405
commit 8d2c986936
1 changed files with 1 additions and 1 deletions

View File

@ -402,7 +402,7 @@ function tag.object.delete(self, fallback_tag, force)
end end
-- delete the tag -- delete the tag
self._private.awful_tag_properties.screen = nil tag.setproperty(self, "screen", nil)
self.activated = false self.activated = false
-- Update all indexes -- Update all indexes