mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-08-12 12:18:35 -05:00
Add support to resolve variables on action queue add
This commit is contained in:
@@ -43,6 +43,16 @@ std::string MacroActionProfile::GetShortDesc() const
|
||||
return _profile;
|
||||
}
|
||||
|
||||
std::shared_ptr<MacroAction> MacroActionProfile::Create(Macro *m)
|
||||
{
|
||||
return std::make_shared<MacroActionProfile>(m);
|
||||
}
|
||||
|
||||
std::shared_ptr<MacroAction> MacroActionProfile::Copy() const
|
||||
{
|
||||
return std::make_shared<MacroActionProfile>(*this);
|
||||
}
|
||||
|
||||
MacroActionProfileEdit::MacroActionProfileEdit(
|
||||
QWidget *parent, std::shared_ptr<MacroActionProfile> entryData)
|
||||
: QWidget(parent)
|
||||
|
||||
Reference in New Issue
Block a user