Browse Source

Fix global settings consistency

Fixes #25161
Marcin Zawiejski 6 years ago
parent
commit
e53c5d858a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      editor/editor_sectioned_inspector.cpp

+ 1 - 1
editor/editor_sectioned_inspector.cpp

@@ -241,7 +241,7 @@ void SectionedInspector::update_category_list() {
 
 		int sp = pi.name.find("/");
 		if (sp == -1)
-			pi.name = "Global/" + pi.name;
+			pi.name = "global/" + pi.name;
 
 		Vector<String> sectionarr = pi.name.split("/");
 		String metasection;