瀏覽代碼

Merge pull request #25239 from dragmz/patch-7

Fix global settings consistency
Rémi Verschelde 6 年之前
父節點
當前提交
7ce0e68ec9
共有 1 個文件被更改,包括 1 次插入1 次删除
  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;