Skip to content
Snippets Groups Projects
Unverified Commit 6d2adb0b authored by greggameplayer's avatar greggameplayer Committed by GitHub
Browse files

Automatically disable joycons docked

when docked mode is enable
parent ec38b4e8
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment