diff options
author | Patrick Griffis <tingping@tingping.se> | 2016-11-30 00:52:48 -0500 |
---|---|---|
committer | Patrick Griffis <tingping@tingping.se> | 2016-11-30 00:52:48 -0500 |
commit | 3118df20422cb73444ed251197b2724252de8766 (patch) | |
tree | dc4b206ad0c904d9179ddebb9d87b2726c1ec04b /src/common/hexchat.c | |
parent | c7849a8921c5331bd3542114554d8e2174af932e (diff) |
Fix timers being incorrectly removed
Possibly fixing #1866
Diffstat (limited to 'src/common/hexchat.c')
-rw-r--r-- | src/common/hexchat.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/common/hexchat.c b/src/common/hexchat.c index 487c96f4..e82f73f5 100644 --- a/src/common/hexchat.c +++ b/src/common/hexchat.c @@ -383,7 +383,7 @@ hexchat_reinit_timers (void) notify_tag = fe_timeout_add_seconds (prefs.hex_notify_timeout, notify_checklist, NULL); } - else if (notify_tag != 0) + else if (!prefs.hex_notify_timeout && notify_tag != 0) { fe_timeout_remove (notify_tag); notify_tag = 0; @@ -394,7 +394,7 @@ hexchat_reinit_timers (void) { away_tag = fe_timeout_add_seconds (prefs.hex_away_timeout, away_check, NULL); } - else if (away_tag != 0) + else if (!prefs.hex_away_track && away_tag != 0) { fe_timeout_remove (away_tag); away_tag = 0; @@ -405,7 +405,7 @@ hexchat_reinit_timers (void) { lag_check_update_tag = fe_timeout_add (500, hexchat_lag_check_update, NULL); } - else if (lag_check_update_tag != 0) + else if (!prefs.hex_gui_lagometer && lag_check_update_tag != 0) { fe_timeout_remove (lag_check_update_tag); lag_check_update_tag = 0; @@ -417,7 +417,8 @@ hexchat_reinit_timers (void) { lag_check_tag = fe_timeout_add_seconds (30, hexchat_lag_check, NULL); } - else if (lag_check_tag != 0) + else if ((!prefs.hex_net_ping_timeout && !prefs.hex_gui_lagometer) + && lag_check_tag != 0) { fe_timeout_remove (lag_check_tag); lag_check_tag = 0; |