diff options
| author | 2019-05-09 13:20:12 -0400 | |
|---|---|---|
| committer | 2019-05-09 13:20:12 -0400 | |
| commit | 8abf0add04a51c71022dd3a41a0d5909213da704 (patch) | |
| tree | 30dace967100e275fbf560ab79975eff4fe2a8f1 /src | |
| parent | Merge pull request #2453 from lioncash/enum (diff) | |
| parent | configure_dialog: Remove the Whats This? button from the dialog (diff) | |
| download | yuzu-8abf0add04a51c71022dd3a41a0d5909213da704.tar.gz yuzu-8abf0add04a51c71022dd3a41a0d5909213da704.tar.xz yuzu-8abf0add04a51c71022dd3a41a0d5909213da704.zip | |
Merge pull request #2459 from lioncash/what
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 | ||