mirror of
https://git.suyu.dev/suyu/suyu
synced 2025-09-01 17:06:32 -05:00
Merge pull request #1440 from lioncash/array
ui_settings: Place definition of the theme array within the cpp file
This commit is contained in:
@@ -13,7 +13,7 @@ ConfigureGeneral::ConfigureGeneral(QWidget* parent)
|
||||
|
||||
ui->setupUi(this);
|
||||
|
||||
for (auto theme : UISettings::themes) {
|
||||
for (const auto& theme : UISettings::themes) {
|
||||
ui->theme_combobox->addItem(theme.first, theme.second);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user