This commit is contained in:
Serge
2024-01-06 19:51:18 +01:00
parent 3785454200
commit 2be3b831ef
2 changed files with 12 additions and 1 deletions

1
app/Extra.Designer.cs generated
View File

@@ -1267,6 +1267,7 @@ namespace GHelper
//
AutoScaleDimensions = new SizeF(192F, 192F);
AutoScaleMode = AutoScaleMode.Dpi;
AutoScroll = true;
AutoSize = true;
AutoSizeMode = AutoSizeMode.GrowAndShrink;
ClientSize = new Size(1013, 1515);

View File

@@ -634,7 +634,17 @@ namespace GHelper
{
if (Height > Program.settingsForm.Height)
{
Top = Program.settingsForm.Top + Program.settingsForm.Height - Height;
var top = Program.settingsForm.Top + Program.settingsForm.Height - Height;
if (top < 0)
{
MaximumSize = new Size(Width, Program.settingsForm.Height);
Top = Program.settingsForm.Top;
} else
{
Top = top;
}
}
else
{