diff options
| author | 2019-05-09 03:20:13 -0400 | |
|---|---|---|
| committer | 2019-05-09 03:20:13 -0400 | |
| commit | f3c18d622e372ec50d573fb868f511e96f9c7154 (patch) | |
| tree | fff1de778444f90d986798d9322e0e66bf18a4e5 /src | |
| parent | loader/nso: Remove left-in debug pragma (diff) | |
| download | yuzu-f3c18d622e372ec50d573fb868f511e96f9c7154.tar.gz yuzu-f3c18d622e372ec50d573fb868f511e96f9c7154.tar.xz yuzu-f3c18d622e372ec50d573fb868f511e96f9c7154.zip | |
configure_dialog: Remove the Whats This? button from the dialog
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) | |||
| 17 | ui->hotkeysTab->Populate(registry); | 17 | ui->hotkeysTab->Populate(registry); |
| 18 | this->setConfiguration(); | 18 | this->setConfiguration(); |
| 19 | this->PopulateSelectionList(); | 19 | this->PopulateSelectionList(); |
| 20 | |||
| 21 | setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint); | ||
| 22 | |||
| 20 | connect(ui->selectorList, &QListWidget::itemSelectionChanged, this, | 23 | connect(ui->selectorList, &QListWidget::itemSelectionChanged, this, |
| 21 | &ConfigureDialog::UpdateVisibleTabs); | 24 | &ConfigureDialog::UpdateVisibleTabs); |
| 25 | |||
| 22 | adjustSize(); | 26 | adjustSize(); |
| 23 | ui->selectorList->setCurrentRow(0); | 27 | ui->selectorList->setCurrentRow(0); |
| 24 | 28 | ||