From d15641da96c3118ee47423288b14d27be0314f79 Mon Sep 17 00:00:00 2001 From: adelikat Date: Mon, 16 Dec 2019 19:34:19 -0600 Subject: [PATCH] InputCompositeWidget - slight cleanup --- BizHawk.Client.EmuHawk/config/InputCompositeWidget.cs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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() {