Fix overlapping/duplicate controls in FirmwaresConfig's menu on Mono
This commit is contained in:
parent
a80dbfa76b
commit
1619b33e8e
|
@ -214,12 +214,13 @@ namespace BizHawk.Client.EmuHawk
|
||||||
|
|
||||||
_cbAllowImport = new CheckBox
|
_cbAllowImport = new CheckBox
|
||||||
{
|
{
|
||||||
Text = "Allow Importing of Unknown Files"
|
Text = "Allow Importing of Unknown Files",
|
||||||
, BackColor = Color.Transparent
|
BackColor = SystemColors.Control,
|
||||||
, CheckAlign = ContentAlignment.MiddleLeft
|
CheckAlign = ContentAlignment.MiddleLeft,
|
||||||
, TextAlign = ContentAlignment.MiddleLeft
|
TextAlign = ContentAlignment.MiddleLeft,
|
||||||
, Font = new Font("Segeo UI", 9, FontStyle.Regular, GraphicsUnit.Point, 1, false)
|
Font = new Font("Segeo UI", 9, FontStyle.Regular, GraphicsUnit.Point, 1, false),
|
||||||
, Checked = false
|
Checked = false,
|
||||||
|
Size = new Size(230, 22),
|
||||||
};
|
};
|
||||||
ToolStripControlHost host = new ToolStripControlHost(_cbAllowImport);
|
ToolStripControlHost host = new ToolStripControlHost(_cbAllowImport);
|
||||||
toolStrip1.Items.Add(host);
|
toolStrip1.Items.Add(host);
|
||||||
|
|
Loading…
Reference in New Issue