Display more information about macros in collapsed state

This commit is contained in:
WarmUpTill
2021-06-18 23:51:28 +02:00
committed by WarmUpTill
parent 913682e128
commit 57c0734ba6
48 changed files with 328 additions and 6 deletions

View File

@@ -365,6 +365,11 @@ bool MacroCondition::Load(obs_data_t *obj)
return true;
}
std::string MacroCondition::GetShortDesc()
{
return "";
}
void MacroCondition::SetDurationConstraint(const DurationConstraint &dur)
{
_duration = dur;
@@ -397,6 +402,11 @@ bool MacroAction::Load(obs_data_t *obj)
return true;
}
std::string MacroAction::GetShortDesc()
{
return "";
}
void MacroAction::LogAction()
{
vblog(LOG_INFO, "performed action %s", GetId().c_str());