diff --git a/BizHawk.Client.EmuHawk/CustomControls/AutosizedLabel.cs b/BizHawk.Client.EmuHawk/CustomControls/AutosizedLabel.cs index 6f5258b847..d889a35095 100644 --- a/BizHawk.Client.EmuHawk/CustomControls/AutosizedLabel.cs +++ b/BizHawk.Client.EmuHawk/CustomControls/AutosizedLabel.cs @@ -1,9 +1,13 @@ +using System.ComponentModel; using System.Windows.Forms; namespace BizHawk.Client.EmuHawk.CustomControls { public class AutosizedLabel : Label { + + [Browsable(false)] + [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] public override bool AutoSize => true; public AutosizedLabel() : base() {