Input Config - fix bug where auto-tab setting was not being respected when changing controllers or consoles

This commit is contained in:
adelikat 2012-07-30 00:43:40 +00:00
parent 59ba7efdaf
commit 34c796d96d
1 changed files with 2 additions and 0 deletions

View File

@ -506,6 +506,7 @@ namespace BizHawk.MultiClient
CurSelectConsole = this.SystemComboBox.SelectedItem.ToString(); CurSelectConsole = this.SystemComboBox.SelectedItem.ToString();
CurSelectController = 0; CurSelectController = 0;
SetFocus(); SetFocus();
SetAutoTab();
} }
private void ControllComboBox_SelectedIndexChanged(object sender, EventArgs e) private void ControllComboBox_SelectedIndexChanged(object sender, EventArgs e)
{ {
@ -516,6 +517,7 @@ namespace BizHawk.MultiClient
Do(SystemComboBox.SelectedItem.ToString()); Do(SystemComboBox.SelectedItem.ToString());
CurSelectController = ControllComboBox.SelectedIndex; CurSelectController = ControllComboBox.SelectedIndex;
SetFocus(); SetFocus();
SetAutoTab();
} }
private void UpdateAll() private void UpdateAll()
{ {