diff options
author | nicm <nicm> | 2015-11-19 14:55:25 +0000 |
---|---|---|
committer | nicm <nicm> | 2015-11-19 14:55:25 +0000 |
commit | 98967c5ec97feef99f8278df9c3b993bbff9c0d5 (patch) | |
tree | cdb783d98c3a973faff143a2071b34ee2fc9b185 | |
parent | 82760a9960850ad33db050f3bec1ab84c55c2e30 (diff) | |
download | rtmux-98967c5ec97feef99f8278df9c3b993bbff9c0d5.tar.gz rtmux-98967c5ec97feef99f8278df9c3b993bbff9c0d5.tar.bz2 rtmux-98967c5ec97feef99f8278df9c3b993bbff9c0d5.zip |
The activity flag could already be set, so queue the callback always (if
not already queued) rather than only if the flag is being added. Fixes a
problem reported by tim@
-rw-r--r-- | alerts.c | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -132,15 +132,15 @@ alerts_queue(struct window *w, int flags) if (!event_initialized(&w->alerts_timer)) evtimer_set(&w->alerts_timer, alerts_timer, w); - if (w->flags & flags) - return; - w->flags |= flags; - log_debug("@%u alerts flags added %#x", w->id, flags); - - if (!alerts_fired && alerts_enabled(w, flags)) { - log_debug("alerts check queued (by @%u)", w->id); - event_once(-1, EV_TIMEOUT, alerts_callback, NULL, NULL); - alerts_fired = 1; + if (!alerts_fired) { + w->flags |= flags; + log_debug("@%u alerts flags added %#x", w->id, flags); + + if (alerts_enabled(w, flags)) { + log_debug("alerts check queued (by @%u)", w->id); + event_once(-1, EV_TIMEOUT, alerts_callback, NULL, NULL); + alerts_fired = 1; + } } } |