mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-08-13 12:50:37 -05:00
Add support to resolve variables on action queue add
This commit is contained in:
@@ -116,6 +116,21 @@ std::string MacroActionWebsocket::GetShortDesc() const
|
||||
return "";
|
||||
}
|
||||
|
||||
std::shared_ptr<MacroAction> MacroActionWebsocket::Create(Macro *m)
|
||||
{
|
||||
return std::make_shared<MacroActionWebsocket>(m);
|
||||
}
|
||||
|
||||
std::shared_ptr<MacroAction> MacroActionWebsocket::Copy() const
|
||||
{
|
||||
return std::make_shared<MacroActionWebsocket>(*this);
|
||||
}
|
||||
|
||||
void MacroActionWebsocket::ResolveVariablesToFixedValues()
|
||||
{
|
||||
_message.ResolveVariables();
|
||||
}
|
||||
|
||||
static inline void populateAPISelection(QComboBox *list)
|
||||
{
|
||||
for (const auto &[_, name] : apiTypes) {
|
||||
|
||||
Reference in New Issue
Block a user