diff options
author | kotontrion <[email protected]> | 2024-08-23 13:48:34 +0200 |
---|---|---|
committer | kotontrion <[email protected]> | 2024-08-23 13:48:34 +0200 |
commit | d26245409c124a769f4c1f4f25399735f8c80758 (patch) | |
tree | c1c6d36f52c6f9001f9f2cdbac728661bf44fc68 | |
parent | 6a5fdcb8f7b8463d5a8b3d533b82ebd35d282e92 (diff) |
fix missing singals
-rw-r--r-- | src/trayItem.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/trayItem.vala b/src/trayItem.vala index bcbf8a7..b6b9da0 100644 --- a/src/trayItem.vala +++ b/src/trayItem.vala @@ -161,7 +161,7 @@ public class TrayItem : Object { } private void _notify() { - string[] props = { "category", "id", "title", "status", "is-menu", "tooltip-markup" }; + string[] props = { "category", "id", "title", "status", "is-menu", "tooltip-markup", "icon-name", "icon-pixbuf" }; foreach (string prop in props) notify_property(prop); |