Skip to content
This repository has been archived by the owner on Nov 26, 2023. It is now read-only.

Commit

Permalink
Adjusted the minimum size of the window from Y=525 to Y=700 to accoun…
Browse files Browse the repository at this point in the history
…t for the extra settings fields.

Depending on OS theme the scrollbar can be barely visible, and most people are using at least 1366x768 nowadays so this seems like a justifiable enough change.
  • Loading branch information
Mircoxi committed Feb 28, 2023
1 parent e39fd94 commit 16fd8af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Scraps/Forms/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ UpdateService update
InitializeComponent();

Text = GlobalShared.WindowTitle;
MinimumSize = new Size(900, 525);
MinimumSize = new Size(900, 700);

_MainWindowTabs.SizeMode = TabSizeMode.Fixed;
_MainWindowTabs.ImageList = new ImageList
Expand Down

0 comments on commit 16fd8af

Please sign in to comment.