Automatically disable joycons docked

when docked mode is enable
This commit is contained in:
greggameplayer 2018-11-22 01:24:39 +01:00 committed by GitHub
parent 6224fcba62
commit 797d3473b4

View file

@ -93,6 +93,10 @@ void ConfigureInput::CallConfigureDialog(Args&&... args) {
}
void ConfigureInput::OnDockedModeChanged(bool last_state, bool new_state) {
if (ui->use_docked_mode->isChecked() && ui->handheld_connected->isChecked()){
ui->handheld_connected->setChecked(false);
}
if (last_state == new_state) {
return;
}