Skip to content

Commit

Permalink
Update OptionsForce.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidXanatos committed Nov 26, 2023
1 parent 671c43a commit 9522fe4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SandboxiePlus/SandMan/Windows/OptionsForce.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,8 @@ void COptionsWindow::OnForceProg()
QString Value = SelectProgram();
if (Value.isEmpty())
return;
if (!CheckForcedItem(Value, (int)eProcess))
return;
AddForcedEntry(Value, (int)eProcess);
OnForcedChanged();
}
Expand All @@ -211,8 +213,6 @@ void COptionsWindow::OnBreakoutProg()
QString Value = SelectProgram();
if (Value.isEmpty())
return;
if (!CheckForcedItem(Value, (int)eProcess))
return;
AddBreakoutEntry(Value, (int)eProcess);
OnForcedChanged();
}
Expand Down

0 comments on commit 9522fe4

Please sign in to comment.