RWELabs/Stardew-Valley-Mod-Manager

[Issue] Splash screen window is infinitely resizable in v220501

Closed this issue · 2 comments

Describe the Issue
The splash screen window can be resized beyond the user interface infinitely.

Steps to Replicate
Steps to reproduce the behavior:

  1. Open Stardew Valley Mod Manager v220501 (facelift upgrade)
  2. When on the splash screen, attempt to resize the splash screen window.

Expected behavior
The window should not be resizable.

Screenshots
image

Environment:

  • Windows Version: Windows 11
  • Mod Manager Version: 220501

Suggested Resolution

Splash.cs

this.MinimumSize = 478, 287;
this.MaximumSize = 478, 287;
this.FormBorderStyle = FixedSingle;

Resolution

Splash.cs

this.MaximumSize = new System.Drawing.Size(478, 287);
this.MinimumSize = new System.Drawing.Size(478, 287);

Issue resolved, fix pushed for v220502