summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-05-09 09:20:13 +0200
committerLioncash <mathew1800@gmail.com>2019-05-09 09:20:13 +0200
commitf3c18d622e372ec50d573fb868f511e96f9c7154 (patch)
treefff1de778444f90d986798d9322e0e66bf18a4e5
parentloader/nso: Remove left-in debug pragma (diff)
downloadyuzu-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
-rw-r--r--src/yuzu/configuration/configure_dialog.cpp4
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);