Quellcode durchsuchen

configure_dialog: Focus the button box on start

Without this, the Reset All Settings button would be selected by default
lat9nq vor 3 Jahren
Ursprung
Commit
33d118509a
1 geänderte Dateien mit 3 neuen und 0 gelöschten Zeilen
  1. 3 0
      src/yuzu/configuration/configure_dialog.cpp

+ 3 - 0
src/yuzu/configuration/configure_dialog.cpp

@@ -97,6 +97,9 @@ ConfigureDialog::ConfigureDialog(QWidget* parent, HotkeyRegistry& registry_,
 
 
     adjustSize();
     adjustSize();
     ui->selectorList->setCurrentRow(0);
     ui->selectorList->setCurrentRow(0);
+
+    // Selects the leftmost button on the bottom bar (Cancel as of writing)
+    ui->buttonBox->setFocus();
 }
 }
 
 
 ConfigureDialog::~ConfigureDialog() = default;
 ConfigureDialog::~ConfigureDialog() = default;