Changed: no resolution scaling

This commit is contained in:
Ray 2021-07-29 19:34:42 +01:00
parent a09c42e817
commit 9a16fd99b1
2 changed files with 2 additions and 1 deletions

View File

@ -41,6 +41,7 @@ namespace FizzyLauncher
notifyIcon1.Text = Application.ProductName;
this.AutoScaleMode = AutoScaleMode.None;
this.StartPosition = FormStartPosition.WindowsDefaultBounds;
this.Visible = false;
}

View File

@ -20,7 +20,7 @@ namespace RyzStudio.Windows.ThemedForms
this.StartPosition = FormStartPosition.CenterParent;
this.TopMost = true;
this.SizeGripStyle = SizeGripStyle.Hide;
this.AutoScaleMode = AutoScaleMode.Font;
this.AutoScaleMode = AutoScaleMode.None;
}
[Browsable(false), EditorBrowsable(EditorBrowsableState.Never)]