summaryrefslogtreecommitdiffstats
path: root/editor/editor_sectioned_inspector.cpp
diff options
context:
space:
mode:
authorreduz <reduzio@gmail.com>2021-05-27 12:32:30 -0300
committerreduz <reduzio@gmail.com>2021-06-02 12:47:57 -0300
commitd95bc3fa6705af7976e58e21d548c790b8ac4ce7 (patch)
tree53a3e0d4923558d3fd70a70119a78db73460b676 /editor/editor_sectioned_inspector.cpp
parent8b06d4275d78debf2bb3d326899648f56abbb492 (diff)
downloadredot-engine-d95bc3fa6705af7976e58e21d548c790b8ac4ce7.tar.gz
Use bold fonts in editor
* Labels are now bold * Categories in trees are bold * Main editor buttons are bold * Fixed section folding arrows in inspector
Diffstat (limited to 'editor/editor_sectioned_inspector.cpp')
-rw-r--r--editor/editor_sectioned_inspector.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/editor/editor_sectioned_inspector.cpp b/editor/editor_sectioned_inspector.cpp
index 7532f1c796..6bfb17f9c2 100644
--- a/editor/editor_sectioned_inspector.cpp
+++ b/editor/editor_sectioned_inspector.cpp
@@ -250,7 +250,8 @@ void SectionedInspector::update_category_list() {
for (int i = 0; i < sc; i++) {
TreeItem *parent = section_map[metasection];
- parent->set_custom_bg_color(0, get_theme_color("prop_subsection", "Editor"));
+ //parent->set_custom_bg_color(0, get_theme_color("prop_subsection", "Editor"));
+ parent->set_custom_font(0, get_theme_font("bold", "EditorFonts"));
if (i > 0) {
metasection += "/" + sectionarr[i];