From 69354d823e341b17a8369767ccaffc3bdb204cb0 Mon Sep 17 00:00:00 2001 From: Raphire <9938813+Raphire@users.noreply.github.com> Date: Sat, 4 Apr 2026 22:34:49 +0200 Subject: [PATCH] Fix: block window resizing beyond min. height/width --- Scripts/GUI/Show-MainWindow.ps1 | 1 - 1 file changed, 1 deletion(-) diff --git a/Scripts/GUI/Show-MainWindow.ps1 b/Scripts/GUI/Show-MainWindow.ps1 index c677936..409b02d 100644 --- a/Scripts/GUI/Show-MainWindow.ps1 +++ b/Scripts/GUI/Show-MainWindow.ps1 @@ -25,7 +25,6 @@ function Show-MainWindow { mmi.ptMaxSize.x = wa.Width; mmi.ptMaxSize.y = wa.Height; System.Runtime.InteropServices.Marshal.StructureToPtr(mmi, lParam, true); - handled = true; } return System.IntPtr.Zero; }