mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-08-13 20:58:34 -05:00
Add support to resolve variables on action queue add
This commit is contained in:
@@ -425,6 +425,16 @@ bool MacroActionHotkey::Load(obs_data_t *obj)
|
||||
return true;
|
||||
}
|
||||
|
||||
std::shared_ptr<MacroAction> MacroActionHotkey::Create(Macro *m)
|
||||
{
|
||||
return std::make_shared<MacroActionHotkey>(m);
|
||||
}
|
||||
|
||||
std::shared_ptr<MacroAction> MacroActionHotkey::Copy() const
|
||||
{
|
||||
return std::make_shared<MacroActionHotkey>(*this);
|
||||
}
|
||||
|
||||
static inline void populateKeySelection(QComboBox *list)
|
||||
{
|
||||
list->addItems({"No key",
|
||||
|
||||
Reference in New Issue
Block a user