From 17dc5741721660d8c9eee14c6c9ebae67ffb6cc8 Mon Sep 17 00:00:00 2001 From: Frog Date: Sat, 25 Jul 2026 01:34:24 -0700 Subject: [PATCH] Add Ability to Maximize Main Form Closes #29 - Adds the ability to maximize the main screen of the app --- CreamInstaller/Forms/MainForm.Designer.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CreamInstaller/Forms/MainForm.Designer.cs b/CreamInstaller/Forms/MainForm.Designer.cs index 5c287ee..c146bff 100644 --- a/CreamInstaller/Forms/MainForm.Designer.cs +++ b/CreamInstaller/Forms/MainForm.Designer.cs @@ -305,11 +305,11 @@ namespace CreamInstaller.Forms Controls.Add(uninstallButton); Controls.Add(scanButton); Controls.Add(installButton); - FormBorderStyle = FormBorderStyle.FixedDialog; + FormBorderStyle = FormBorderStyle.Sizable; HelpButton = true; Icon = Properties.Resources.Icon; Margin = new Padding(4, 3, 4, 3); - MaximizeBox = false; + MaximizeBox = true; MinimizeBox = false; Name = "MainForm"; StartPosition = FormStartPosition.Manual;