mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-08-11 19:58:49 -05:00
Don't show 2 warning popups for groups with macros
This commit is contained in:
committed by
WarmUpTill
parent
7b1a256f8a
commit
6c4e4b8cd8
@@ -116,10 +116,11 @@ void AdvSceneSwitcher::RemoveSelectedMacros()
|
||||
QString deleteWarning = obs_module_text(
|
||||
"AdvSceneSwitcher.macroTab.removeSingleMacroPopup.text");
|
||||
auto macro = macros.at(0);
|
||||
deleteWarning = deleteWarning.arg(
|
||||
QString::fromStdString(macro->Name()));
|
||||
|
||||
if (!DisplayMessage(deleteWarning.arg(QString::fromStdString(
|
||||
macro->Name())),
|
||||
true)) {
|
||||
if ((!macro->IsGroup() || macro->GroupSize() == 0) &&
|
||||
!DisplayMessage(deleteWarning, true)) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user