diff options
| author | 2020-01-20 04:24:51 -0500 | |
|---|---|---|
| committer | 2020-01-20 04:24:51 -0500 | |
| commit | 4ea073c28675499161b62dc39542b7150141b465 (patch) | |
| tree | ad98e7ab84617b2060f7b7a8c2f300657f610376 | |
| parent | GUI/gamelist: add "None" as an option for second row and remove dynamically d... (diff) | |
| parent | yuzu_qt: config: Move audio to its own tab. (diff) | |
| download | yuzu-4ea073c28675499161b62dc39542b7150141b465.tar.gz yuzu-4ea073c28675499161b62dc39542b7150141b465.tar.xz yuzu-4ea073c28675499161b62dc39542b7150141b465.zip | |
Merge pull request #3332 from bunnei/config-audio-tab
yuzu_qt: config: Move audio to its own tab.
Diffstat (limited to '')
| -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 | ||