Add option to resolve variables on queue add

This commit is contained in:
WarmUpTill
2024-03-01 23:31:45 +01:00
committed by WarmUpTill
parent 673ac8078b
commit 2928775f5b
3 changed files with 31 additions and 2 deletions

View File

@@ -38,6 +38,7 @@ private:
void RunActions();
bool _runOnStartup = true;
bool _resolveVariablesOnAdd = true;
std::atomic_bool _stop = {false};
std::mutex _mutex;
std::condition_variable _cv;
@@ -66,6 +67,7 @@ private:
QLabel *_queueSize;
QPushButton *_clear;
QCheckBox *_runOnStartup;
QCheckBox *_resolveVariablesOnAdd;
ActionQueue &_queue;
};