diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-01-23 12:25:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-23 12:25:58 +0100 |
commit | 7ce0e68ec9a6b309b83d8b566ed77ea2fa60c58d (patch) | |
tree | c447516c35310b5fa1598e2b2edb1eb7d3700057 | |
parent | f4b747d3e628c85f4ccb1be6286f0169372e0a2c (diff) | |
parent | e53c5d858a6ec15c39ee838aababe8aab1832f65 (diff) |
Merge pull request #25239 from dragmz/patch-7
Fix global settings consistency
-rw-r--r-- | editor/editor_sectioned_inspector.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_sectioned_inspector.cpp b/editor/editor_sectioned_inspector.cpp index a2883690da..acc7637c0b 100644 --- a/editor/editor_sectioned_inspector.cpp +++ b/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; |