summaryrefslogtreecommitdiff
path: root/core/project_settings.cpp
diff options
context:
space:
mode:
authorMax Hilbrunner <mhilbrunner@users.noreply.github.com>2018-07-03 15:37:02 +0200
committerGitHub <noreply@github.com>2018-07-03 15:37:02 +0200
commitf276e24ea871d2345870a1d2b9ebfd25e0061b09 (patch)
treef7a50fef244a8e3506174a08b800c8cb12a54100 /core/project_settings.cpp
parent065d209f12eedff6a927707e779e0e8f31e09a0d (diff)
parent1844704c20c3ba74a6f18d0c781df8f006aa2d46 (diff)
Merge pull request #19802 from matthew1006/custom-feature-tag-fix
Fixed project settings overrides not using custom feature tags.
Diffstat (limited to 'core/project_settings.cpp')
-rw-r--r--core/project_settings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/project_settings.cpp b/core/project_settings.cpp
index ac4a4b7d15..a7bfc8895b 100644
--- a/core/project_settings.cpp
+++ b/core/project_settings.cpp
@@ -137,7 +137,7 @@ bool ProjectSettings::_set(const StringName &p_name, const Variant &p_value) {
else {
if (p_name == CoreStringNames::get_singleton()->_custom_features) {
- Vector<String> custom_feature_array = p_value;
+ Vector<String> custom_feature_array = String(p_value).split(",");
for (int i = 0; i < custom_feature_array.size(); i++) {
custom_features.insert(custom_feature_array[i]);