Merge branch 'feature/no-scaling' into 'release/0.2.2.018'

Changed: no resolution scaling

See merge request SympatheticFire/linear-app-launcher!28
This commit is contained in:
Ray 2021-07-29 20:10:45 +00:00
commit 804d448fe1
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)]