diff --git a/BizHawk.Client.EmuHawk/config/InputCompositeWidget.cs b/BizHawk.Client.EmuHawk/config/InputCompositeWidget.cs index 9b3a842a87..b6ff9c2d5d 100644 --- a/BizHawk.Client.EmuHawk/config/InputCompositeWidget.cs +++ b/BizHawk.Client.EmuHawk/config/InputCompositeWidget.cs @@ -64,10 +64,9 @@ namespace BizHawk.Client.EmuHawk private readonly ContextMenuStrip _dropdownMenu; - public bool AutoTab { get { return widget.AutoTab; } set { widget.AutoTab = value; } } - public string WidgetName { get { return widget.WidgetName; } set { widget.WidgetName = value; } } - - public string Bindings { get { return widget.Bindings; } set { widget.Bindings = value; } } + public bool AutoTab { get => widget.AutoTab; set => widget.AutoTab = value; } + public string WidgetName { get => widget.WidgetName; set => widget.WidgetName = value; } + public string Bindings { get => widget.Bindings; set => widget.Bindings = value; } public void Clear() {