fix: backlight setting not applying on change

This commit is contained in:
MihailRis
2024-10-15 04:58:46 +03:00
parent 4dfa235f12
commit d59fac61bb
6 changed files with 20 additions and 0 deletions
+5
View File
@@ -237,6 +237,11 @@ namespace util {
jobsMutexCondition.notify_one();
}
void clearQueue() {
std::lock_guard<std::mutex> lock(jobsMutex);
jobs = {};
}
/// @brief If false: worker will be blocked until it's result performed
void setStandaloneResults(bool flag) {
standaloneResults = flag;