summaryrefslogtreecommitdiff
path: root/editor/editor_themes.cpp
diff options
context:
space:
mode:
authorray90514 <ray90514@hotmail.com>2021-03-11 22:52:05 +0800
committerray90514 <ray90514@hotmail.com>2021-03-12 09:28:20 +0800
commit4c0ab0780936538bf9fb4bf2f11f61eafdce76d2 (patch)
tree8a26da2641613c0e88a4a7ebf226e57bc78199ef /editor/editor_themes.cpp
parent01851defb5e43803bbcd6d8221a25ebbdd963119 (diff)
Fix Tree focus border disappears when Border Size is set to 0
Diffstat (limited to 'editor/editor_themes.cpp')
-rw-r--r--editor/editor_themes.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_themes.cpp b/editor/editor_themes.cpp
index fe748b81c3..030d36ff78 100644
--- a/editor/editor_themes.cpp
+++ b/editor/editor_themes.cpp
@@ -852,7 +852,7 @@ Ref<Theme> create_editor_theme(const Ref<Theme> p_theme) {
Ref<StyleBoxFlat> style_tree_cursor = style_default->duplicate();
style_tree_cursor->set_draw_center(false);
- style_tree_cursor->set_border_width_all(border_width);
+ style_tree_cursor->set_border_width_all(MAX(1, border_width));
style_tree_cursor->set_border_color(contrast_color_1);
Ref<StyleBoxFlat> style_tree_title = style_default->duplicate();