Fix overlapping/duplicate controls in FirmwaresConfig's menu on Mono

This commit is contained in:
YoshiRulz 2020-12-30 01:25:30 +10:00
parent a80dbfa76b
commit 1619b33e8e
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 7 additions and 6 deletions

View File

@ -214,12 +214,13 @@ namespace BizHawk.Client.EmuHawk
_cbAllowImport = new CheckBox
{
Text = "Allow Importing of Unknown Files"
, BackColor = Color.Transparent
, CheckAlign = ContentAlignment.MiddleLeft
, TextAlign = ContentAlignment.MiddleLeft
, Font = new Font("Segeo UI", 9, FontStyle.Regular, GraphicsUnit.Point, 1, false)
, Checked = false
Text = "Allow Importing of Unknown Files",
BackColor = SystemColors.Control,
CheckAlign = ContentAlignment.MiddleLeft,
TextAlign = ContentAlignment.MiddleLeft,
Font = new Font("Segeo UI", 9, FontStyle.Regular, GraphicsUnit.Point, 1, false),
Checked = false,
Size = new Size(230, 22),
};
ToolStripControlHost host = new ToolStripControlHost(_cbAllowImport);
toolStrip1.Items.Add(host);