dont show paradox dlc dialog on uninstall

This commit is contained in:
pointfeev 2022-08-25 23:41:59 -04:00
parent 50fd708017
commit 8e1d35b2d2

View file

@ -852,7 +852,7 @@ internal partial class SelectForm : CustomForm
{ {
foreach (ProgramSelection selection in ProgramSelection.AllEnabled) foreach (ProgramSelection selection in ProgramSelection.AllEnabled)
if (!Program.IsProgramRunningDialog(this, selection)) return; if (!Program.IsProgramRunningDialog(this, selection)) return;
if (ParadoxLauncher.DlcDialog(this)) return; if (!uninstall && ParadoxLauncher.DlcDialog(this)) return;
Hide(); Hide();
using InstallForm installForm = new(this, uninstall); using InstallForm installForm = new(this, uninstall);
_ = installForm.ShowDialog(); _ = installForm.ShowDialog();