Merge pull request #51319 from pycbouh/editor-fix-theme-item-descriptions

Fix theme property descriptions in the Inspector
This commit is contained in:
Rémi Verschelde 2021-08-06 20:23:41 +02:00 committed by GitHub
commit 18c5d862e4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1907,8 +1907,7 @@ void EditorInspector::update_tree() {
}
Vector<String> slices = propname.operator String().split("/");
if (slices.size() == 2 && slices[0].begins_with("custom_")) {
// Likely a theme property.
if (slices.size() == 2 && slices[0].begins_with("theme_override_")) {
for (int i = 0; i < F->get().theme_properties.size(); i++) {
if (F->get().theme_properties[i].name == slices[1]) {
descr = DTR(F->get().theme_properties[i].description);