Skip to content

Commit

Permalink
controller config - fix autotab off behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
adelikat committed Jun 7, 2014
1 parent 874ef45 commit 61a707c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BizHawk.Client.EmuHawk/config/InputCompositeWidget.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public void TabNext()

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; } }
Expand Down

0 comments on commit 61a707c

Please sign in to comment.