summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Koopa <raykoopa@users.noreply.github.com>2017-12-11 12:59:33 +0100
committerRay Koopa <raykoopa@users.noreply.github.com>2017-12-11 13:13:17 +0100
commitd0ebcb61c888f33916bade0200a513b859d449c5 (patch)
treee8ae9d01c53d86426c05f38700b729c3822cbf79
parentdfb3634c3462adb3d9f0bf1e2e7b4261c3313b80 (diff)
Highlight Editor Settings categories
-rw-r--r--editor/property_editor.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/editor/property_editor.cpp b/editor/property_editor.cpp
index b187a9ae9d..59acd9ded9 100644
--- a/editor/property_editor.cpp
+++ b/editor/property_editor.cpp
@@ -4532,6 +4532,7 @@ void SectionedPropertyEditor::update_category_list() {
for (int i = 0; i < sc; i++) {
TreeItem *parent = section_map[metasection];
+ parent->set_custom_bg_color(0, get_color("prop_subsection", "Editor"));
if (i > 0) {
metasection += "/" + sectionarr[i];
@@ -4585,7 +4586,7 @@ SectionedPropertyEditor::SectionedPropertyEditor() {
search_box = NULL;
VBoxContainer *left_vb = memnew(VBoxContainer);
- left_vb->set_custom_minimum_size(Size2(160, 0) * EDSCALE);
+ left_vb->set_custom_minimum_size(Size2(170, 0) * EDSCALE);
add_child(left_vb);
sections = memnew(Tree);