Fix `RadioButtonEx` not getting `AutoSize = true`
This commit is contained in:
parent
fd4771c45c
commit
8aa3f892d0
|
@ -15,7 +15,8 @@ namespace BizHawk.WinForms.Controls
|
||||||
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
|
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
|
||||||
public new Size Size => base.Size;
|
public new Size Size => base.Size;
|
||||||
|
|
||||||
public RadioButtonEx() {}
|
public RadioButtonEx()
|
||||||
|
=> base.AutoSize = true;
|
||||||
|
|
||||||
public RadioButtonEx(IRadioButtonReadOnlyTracker tracker) : base(tracker) => base.AutoSize = true;
|
public RadioButtonEx(IRadioButtonReadOnlyTracker tracker) : base(tracker) => base.AutoSize = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue