InputCompositeWidget - slight cleanup
This commit is contained in:
parent
0d78318fa1
commit
d15641da96
|
@ -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()
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue