We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ff2b5a5 + 8ab9205 commit d427a60Copy full SHA for d427a60
editor/project_settings_editor.cpp
@@ -267,7 +267,7 @@ void ProjectSettingsEditor::shortcut_input(const Ref<InputEvent> &p_event) {
267
268
String ProjectSettingsEditor::_get_setting_name() const {
269
String name = property_box->get_text().strip_edges();
270
- if (!name.contains("/")) {
+ if (!name.begins_with("_") && !name.contains("/")) {
271
name = "global/" + name;
272
}
273
return name;
0 commit comments