Input Config - fix bug where auto-tab setting was not being respected when changing controllers or consoles
This commit is contained in:
parent
59ba7efdaf
commit
34c796d96d
|
@ -506,6 +506,7 @@ namespace BizHawk.MultiClient
|
|||
CurSelectConsole = this.SystemComboBox.SelectedItem.ToString();
|
||||
CurSelectController = 0;
|
||||
SetFocus();
|
||||
SetAutoTab();
|
||||
}
|
||||
private void ControllComboBox_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
|
@ -516,6 +517,7 @@ namespace BizHawk.MultiClient
|
|||
Do(SystemComboBox.SelectedItem.ToString());
|
||||
CurSelectController = ControllComboBox.SelectedIndex;
|
||||
SetFocus();
|
||||
SetAutoTab();
|
||||
}
|
||||
private void UpdateAll()
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue