Add option to disable saving when switching macros

This commit is contained in:
WarmUpTill
2024-09-13 19:55:52 +02:00
committed by WarmUpTill
parent faa65facfe
commit f5eadfa39c
4 changed files with 30 additions and 2 deletions

View File

@@ -742,7 +742,10 @@ void AdvSceneSwitcher::MacroSelectionChanged()
return;
}
SetEditMacro(*macro);
obs_frontend_save();
if (GetGlobalMacroSettings()._saveSettingsOnMacroChange) {
obs_frontend_save();
}
}
void AdvSceneSwitcher::HighlightOnChange()