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:
@@ -101,6 +101,21 @@ std::string MacroActionSudioMode::GetShortDesc() const
|
||||
return "";
|
||||
}
|
||||
|
||||
std::shared_ptr<MacroAction> MacroActionSudioMode::Create(Macro *m)
|
||||
{
|
||||
return std::make_shared<MacroActionSudioMode>(m);
|
||||
}
|
||||
|
||||
std::shared_ptr<MacroAction> MacroActionSudioMode::Copy() const
|
||||
{
|
||||
return std::make_shared<MacroActionSudioMode>(*this);
|
||||
}
|
||||
|
||||
void MacroActionSudioMode::ResolveVariablesToFixedValues()
|
||||
{
|
||||
_scene.ResolveVariables();
|
||||
}
|
||||
|
||||
static inline void populateActionSelection(QComboBox *list)
|
||||
{
|
||||
for (const auto &[id, name] : actionTypes) {
|
||||
|
||||
Reference in New Issue
Block a user