[Issue] Splash screen window is infinitely resizable in v220501
Closed this issue · 2 comments
RyanWalpole commented
Describe the Issue
The splash screen window can be resized beyond the user interface infinitely.
Steps to Replicate
Steps to reproduce the behavior:
- Open Stardew Valley Mod Manager v220501 (facelift upgrade)
- When on the splash screen, attempt to resize the splash screen window.
Expected behavior
The window should not be resizable.
Environment:
- Windows Version: Windows 11
- Mod Manager Version: 220501
Suggested Resolution
Splash.cs
this.MinimumSize = 478, 287;
this.MaximumSize = 478, 287;
this.FormBorderStyle = FixedSingle;
RyanWalpole commented
Resolution
Splash.cs
this.MaximumSize = new System.Drawing.Size(478, 287);
this.MinimumSize = new System.Drawing.Size(478, 287);
RyanWalpole commented
Issue resolved, fix pushed for v220502