diff options
author | kotontrion <[email protected]> | 2024-10-25 08:50:50 +0200 |
---|---|---|
committer | kotontrion <[email protected]> | 2024-10-25 08:50:50 +0200 |
commit | d6bdcff12256ef1ff8c906c90ebf3c72b58209af (patch) | |
tree | fb9d3c16bab2951d4558fab4eda3082698bc5fa5 | |
parent | 510ba0b25a680ab53cf353bcaca2950cdd877ff9 (diff) |
tray: fix method visibility
-rw-r--r-- | lib/tray/trayItem.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tray/trayItem.vala b/lib/tray/trayItem.vala index 16bc05b..db0e6d4 100644 --- a/lib/tray/trayItem.vala +++ b/lib/tray/trayItem.vala @@ -324,7 +324,7 @@ public class TrayItem : Object { proxy.Menu); } - public Gdk.Pixbuf? _get_icon_pixbuf() { + private Gdk.Pixbuf? _get_icon_pixbuf() { Pixmap[] pixmaps = proxy.Status == Status.NEEDS_ATTENTION ? proxy.AttentionIconPixmap : proxy.IconPixmap; |