Skip to content

Commit 0f3e975

Browse files
authored
Merge pull request godotengine#111134 from KoBeWi/remove_remove_char
Fix enum strings losing space
2 parents abbe792 + 60c45fb commit 0f3e975

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

editor/inspector/editor_properties.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3859,7 +3859,7 @@ EditorProperty *EditorInspectorDefaultPlugin::get_editor_for_property(Object *p_
38593859
option_names.append(option.get_slicec('/', 1));
38603860
}
38613861
} else {
3862-
options = p_hint_text.remove_char(' ').split(",", false);
3862+
options = p_hint_text.split(",", false);
38633863
}
38643864
editor->setup(options, option_names, false, (p_hint == PROPERTY_HINT_ENUM_SUGGESTION));
38653865
return editor;

0 commit comments

Comments
 (0)