fix(xworkspaces): Never swallow updates (#2275)

If two WM events arrive withing 25ms of one-another, the second one does
not trigger a bar update.
The module state is still correct, it is just not reflected in the bar.

This somehow caused updates being swallowed in fluxbox, but only after
PR #882 was merged, even though that 25ms restriction existed long
before that.

Fixes #2272
This commit is contained in:
Patrick Ziegler 2020-12-05 23:28:48 +01:00 committed by GitHub
parent 82ebad5e7a
commit 037f6e6c45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 5 deletions

View File

@ -110,8 +110,6 @@ namespace modules {
// The following mutex is here to protect the data of this modules.
// This can't be achieved using m_buildlock since we "CRTP override" get_output().
mutable mutex m_workspace_mutex;
event_timer m_timer{0L, 25L};
};
} // namespace modules

View File

@ -126,9 +126,7 @@ namespace modules {
return;
}
if (m_timer.allow(evt->time)) {
broadcast();
}
broadcast();
}
/**