diff options
author | Lioncash <mathew1800@gmail.com> | 2019-05-09 09:20:13 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-05-09 09:20:13 +0200 |
commit | f3c18d622e372ec50d573fb868f511e96f9c7154 (patch) | |
tree | fff1de778444f90d986798d9322e0e66bf18a4e5 /src | |
parent | loader/nso: Remove left-in debug pragma (diff) | |
download | yuzu-f3c18d622e372ec50d573fb868f511e96f9c7154.tar yuzu-f3c18d622e372ec50d573fb868f511e96f9c7154.tar.gz yuzu-f3c18d622e372ec50d573fb868f511e96f9c7154.tar.bz2 yuzu-f3c18d622e372ec50d573fb868f511e96f9c7154.tar.lz yuzu-f3c18d622e372ec50d573fb868f511e96f9c7154.tar.xz yuzu-f3c18d622e372ec50d573fb868f511e96f9c7154.tar.zst yuzu-f3c18d622e372ec50d573fb868f511e96f9c7154.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/yuzu/configuration/configure_dialog.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/yuzu/configuration/configure_dialog.cpp b/src/yuzu/configuration/configure_dialog.cpp index a5218b051..32c05b797 100644 --- a/src/yuzu/configuration/configure_dialog.cpp +++ b/src/yuzu/configuration/configure_dialog.cpp @@ -17,8 +17,12 @@ ConfigureDialog::ConfigureDialog(QWidget* parent, HotkeyRegistry& registry) ui->hotkeysTab->Populate(registry); this->setConfiguration(); this->PopulateSelectionList(); + + setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint); + connect(ui->selectorList, &QListWidget::itemSelectionChanged, this, &ConfigureDialog::UpdateVisibleTabs); + adjustSize(); ui->selectorList->setCurrentRow(0); |