mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-08-11 19:58:49 -05:00
Add support to resolve variables on action queue add
This commit is contained in:
@@ -114,6 +114,16 @@ std::string MacroActionQueue::GetShortDesc() const
|
||||
return GetActionQueueName(_queue);
|
||||
}
|
||||
|
||||
std::shared_ptr<MacroAction> MacroActionQueue::Create(Macro *m)
|
||||
{
|
||||
return std::make_shared<MacroActionQueue>(m);
|
||||
}
|
||||
|
||||
std::shared_ptr<MacroAction> MacroActionQueue::Copy() const
|
||||
{
|
||||
return std::make_shared<MacroActionQueue>(*this);
|
||||
}
|
||||
|
||||
static inline void populateActionSelection(QComboBox *list)
|
||||
{
|
||||
for (const auto &[_, name] : actionTypes) {
|
||||
|
||||
Reference in New Issue
Block a user