diff options
| author | 2020-01-19 23:17:53 -0500 | |
|---|---|---|
| committer | 2020-01-19 23:17:53 -0500 | |
| commit | 690732bc0d27beafa76d0a0464906de33c5ea36c (patch) | |
| tree | a0188a09b800661454ad4aabf2767d2670886982 | |
| parent | Merge pull request #3271 from bunnei/time-rewrite (diff) | |
| download | yuzu-690732bc0d27beafa76d0a0464906de33c5ea36c.tar.gz yuzu-690732bc0d27beafa76d0a0464906de33c5ea36c.tar.xz yuzu-690732bc0d27beafa76d0a0464906de33c5ea36c.zip | |
yuzu_qt: config: Move audio to its own tab.
- We have some important audio settings, makes them more discoverable.
| -rw-r--r-- | src/yuzu/configuration/configure_dialog.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/yuzu/configuration/configure_dialog.cpp b/src/yuzu/configuration/configure_dialog.cpp index 25b2e1b05..8497eaa14 100644 --- a/src/yuzu/configuration/configure_dialog.cpp +++ b/src/yuzu/configuration/configure_dialog.cpp | |||
| @@ -73,11 +73,11 @@ void ConfigureDialog::RetranslateUI() { | |||
| 73 | Q_DECLARE_METATYPE(QList<QWidget*>); | 73 | Q_DECLARE_METATYPE(QList<QWidget*>); |
| 74 | 74 | ||
| 75 | void ConfigureDialog::PopulateSelectionList() { | 75 | void ConfigureDialog::PopulateSelectionList() { |
| 76 | const std::array<std::pair<QString, QList<QWidget*>>, 4> items{ | 76 | const std::array<std::pair<QString, QList<QWidget*>>, 5> items{ |
| 77 | {{tr("General"), {ui->generalTab, ui->webTab, ui->debugTab, ui->gameListTab}}, | 77 | {{tr("General"), {ui->generalTab, ui->webTab, ui->debugTab, ui->gameListTab}}, |
| 78 | {tr("System"), | 78 | {tr("System"), {ui->systemTab, ui->profileManagerTab, ui->serviceTab, ui->filesystemTab}}, |
| 79 | {ui->systemTab, ui->profileManagerTab, ui->serviceTab, ui->filesystemTab, ui->audioTab}}, | ||
| 80 | {tr("Graphics"), {ui->graphicsTab}}, | 79 | {tr("Graphics"), {ui->graphicsTab}}, |
| 80 | {tr("Audio"), {ui->audioTab}}, | ||
| 81 | {tr("Controls"), {ui->inputTab, ui->hotkeysTab}}}, | 81 | {tr("Controls"), {ui->inputTab, ui->hotkeysTab}}}, |
| 82 | }; | 82 | }; |
| 83 | 83 | ||