diff options
author | David <dbphillipsnz@gmail.com> | 2014-05-29 17:11:55 +1200 |
---|---|---|
committer | David <dbphillipsnz@gmail.com> | 2014-06-06 20:31:40 +1200 |
commit | 3bd4c965bb128267544f49b1c0e7fd06e3a5d9b8 (patch) | |
tree | 7a47733aad0b0fa1a5b1e0cf8b5a57d184853127 | |
parent | 21469a9ca02dc69fa54d334adc69e545030b8d5d (diff) | |
download | paramano-3bd4c965bb128267544f49b1c0e7fd06e3a5d9b8.tar.xz |
Revert update frequency decrease
-rw-r--r-- | tray.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -272,7 +272,7 @@ void tray_init() g_signal_connect(G_OBJECT(tray), "popup-menu", GTK_SIGNAL_FUNC(popup_menu), NULL); g_signal_connect(G_OBJECT(tray), "activate", GTK_SIGNAL_FUNC(activate), NULL); debug("Adding timeout\n"); - g_timeout_add(5000, update_icon, NULL); + g_timeout_add(1000, update_icon, NULL); tray_init_menu(); } |