X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/321f753675254b409a1ec3e578da0ae1940c4805..d48eab4dbfa4678986af61afd83b3cb80b1a9679:/disobedience/log.c diff --git a/disobedience/log.c b/disobedience/log.c index af38643..b0aaace 100644 --- a/disobedience/log.c +++ b/disobedience/log.c @@ -83,10 +83,12 @@ static struct monitor *monitors; /** @brief Update everything */ void all_update(void) { + ++suppress_actions; queue_update(); recent_update(); volume_update(); added_update(); + --suppress_actions; } /** @brief Called when the client connects @@ -167,7 +169,8 @@ static void log_state(void attribute((unused)) *v, const struct monitor *m; unsigned long changes = state ^ last_state; static int first = 1; - + + ++suppress_actions; if(first) { changes = -1UL; first = 0; @@ -182,6 +185,7 @@ static void log_state(void attribute((unused)) *v, if(changes & m->mask) m->callback(m->u); } + --suppress_actions; } /** @brief Called when volume changes */ @@ -190,7 +194,9 @@ static void log_volume(void attribute((unused)) *v, if(!rtp_supported && (volume_l != l || volume_r != r)) { volume_l = l; volume_r = r; + ++suppress_actions; volume_update(); + --suppress_actions; } }