controller config - fix autotab off behavior
This commit is contained in:
parent
874ef457d5
commit
61a707c904
|
@ -44,7 +44,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
ContextMenuStrip DropdownMenu;
|
||||
|
||||
public bool AutoTab { get { return widget.AutoTab; } set { widget.AutoTab = true; } }
|
||||
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; } }
|
||||
|
|
Loading…
Reference in New Issue