1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Rearrange editor/naming/* project settings

This commit is contained in:
Danil Alexeev
2023-01-12 11:41:13 +03:00
parent 0e4e782ada
commit 8f706be6fa
7 changed files with 23 additions and 15 deletions

View File

@@ -2188,7 +2188,7 @@ void SceneTreeDock::_do_create(Node *p_parent) {
ERR_FAIL_COND(!child);
String new_name = p_parent->validate_child_name(child);
if (GLOBAL_GET("editor/node_naming/name_casing").operator int() != NAME_CASING_PASCAL_CASE) {
if (GLOBAL_GET("editor/naming/node_name_casing").operator int() != NAME_CASING_PASCAL_CASE) {
new_name = adjust_name_casing(new_name);
}
child->set_name(new_name);