Browse Source

Merge pull request #25239 from dragmz/patch-7

Fix global settings consistency
Rémi Verschelde 6 years ago
parent
commit
7ce0e68ec9
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;