diff options
author | kotontrion <[email protected]> | 2025-03-13 11:54:43 +0100 |
---|---|---|
committer | noname <[email protected]> | 2025-04-25 01:19:20 +1000 |
commit | 8679d4d3e80010ea2f7beadf2db86a9a35330b1a (patch) | |
tree | 99caccbcd0b737b9661de106a36d25168242a934 | |
parent | b8d3e2c5ca4b0c28f717c9c1f3771db342bf74a4 (diff) |
AstalTray: reduce dbus call timeout
-rw-r--r-- | lib/tray/trayItem.vala | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/tray/trayItem.vala b/lib/tray/trayItem.vala index dbfbea8..b335eb6 100644 --- a/lib/tray/trayItem.vala +++ b/lib/tray/trayItem.vala @@ -209,6 +209,8 @@ public class TrayItem : Object { path ); + proxy.g_default_timeout = 1000; + connection_ids.append(proxy.NewStatus.connect(refresh_all_properties)); connection_ids.append(proxy.NewToolTip.connect(refresh_all_properties)); connection_ids.append(proxy.NewTitle.connect(refresh_all_properties)); |