mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 04:59:59 +00:00
Merge pull request #2866 from Morph1984/checkbox_fix
configure_input: Uncheck "Joycons Docked" when "Use Docked Mode" is checked
This commit is contained in:
commit
c41365a56f
1 changed files with 2 additions and 0 deletions
|
@ -182,6 +182,8 @@ void ConfigureInput::UpdateUIEnabled() {
|
|||
players_configure[i]->setEnabled(players_controller[i]->currentIndex() != 0);
|
||||
}
|
||||
|
||||
ui->handheld_connected->setChecked(ui->handheld_connected->isChecked() &&
|
||||
!ui->use_docked_mode->isChecked());
|
||||
ui->handheld_connected->setEnabled(!ui->use_docked_mode->isChecked());
|
||||
ui->handheld_configure->setEnabled(ui->handheld_connected->isChecked() &&
|
||||
!ui->use_docked_mode->isChecked());
|
||||
|
|
Loading…
Reference in a new issue