summaryrefslogtreecommitdiffstats
path: root/src/common/settings_common.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/settings_common.cpp')
-rw-r--r--src/common/settings_common.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/settings_common.cpp b/src/common/settings_common.cpp
index 1439fb451..90842e797 100644
--- a/src/common/settings_common.cpp
+++ b/src/common/settings_common.cpp
@@ -12,7 +12,7 @@ BasicSetting::BasicSetting(Linkage& linkage, const std::string& name, enum Categ
: label{name}, category{category_}, id{linkage.count}, save{save_},
runtime_modifiable{runtime_modifiable_}, specialization{specialization_},
other_setting{other_setting_} {
- linkage.by_category[category].push_front(this);
+ linkage.by_category[category].push_back(this);
linkage.count++;
}