diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/yuzu/configuration/configure_general.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/yuzu/configuration/configure_general.cpp b/src/yuzu/configuration/configure_general.cpp index e48f4f5a3..dd25dc6e1 100644 --- a/src/yuzu/configuration/configure_general.cpp +++ b/src/yuzu/configuration/configure_general.cpp | |||
| @@ -14,7 +14,8 @@ ConfigureGeneral::ConfigureGeneral(QWidget* parent) | |||
| 14 | ui->setupUi(this); | 14 | ui->setupUi(this); |
| 15 | 15 | ||
| 16 | for (const auto& theme : UISettings::themes) { | 16 | for (const auto& theme : UISettings::themes) { |
| 17 | ui->theme_combobox->addItem(theme.first, theme.second); | 17 | ui->theme_combobox->addItem(QString::fromUtf8(theme.first), |
| 18 | QString::fromUtf8(theme.second)); | ||
| 18 | } | 19 | } |
| 19 | 20 | ||
| 20 | this->setConfiguration(); | 21 | this->setConfiguration(); |