From 8e1d35b2d2dd4f4355da46b993dfd54081a2c883 Mon Sep 17 00:00:00 2001 From: pointfeev Date: Thu, 25 Aug 2022 23:41:59 -0400 Subject: [PATCH] dont show paradox dlc dialog on uninstall --- CreamInstaller/Forms/SelectForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CreamInstaller/Forms/SelectForm.cs b/CreamInstaller/Forms/SelectForm.cs index e1c8265..6bf9b60 100644 --- a/CreamInstaller/Forms/SelectForm.cs +++ b/CreamInstaller/Forms/SelectForm.cs @@ -852,7 +852,7 @@ internal partial class SelectForm : CustomForm { foreach (ProgramSelection selection in ProgramSelection.AllEnabled) if (!Program.IsProgramRunningDialog(this, selection)) return; - if (ParadoxLauncher.DlcDialog(this)) return; + if (!uninstall && ParadoxLauncher.DlcDialog(this)) return; Hide(); using InstallForm installForm = new(this, uninstall); _ = installForm.ShowDialog();