We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b283b0 commit ca988d3Copy full SHA for ca988d3
lib/tray/trayItem.vala
@@ -122,7 +122,11 @@ public class TrayItem : Object {
122
* If set, this only supports the menu, so showing the menu should be prefered
123
* over calling [method@AstalTray.TrayItem.activate].
124
*/
125
- public bool is_menu { get { return proxy.ItemIsMenu ;} }
+ public bool is_menu {
126
+ get {
127
+ return proxy.ItemIsMenu || proxy.get_cached_property("ItemIsMenu") == null;
128
+ }
129
130
131
/**
132
* The icon theme path, where to look for the [property@AstalTray.TrayItem:icon-name].
0 commit comments