Fix invisible ItemList cursor in edito theme
This commit is contained in:
parent
394508d26d
commit
b8c251f704
1 changed files with 1 additions and 1 deletions
|
|
@ -1051,7 +1051,7 @@ void EditorThemeManager::_populate_standard_styles(const Ref<EditorTheme> &p_the
|
|||
|
||||
Ref<StyleBoxFlat> style_itemlist_cursor = p_config.base_style->duplicate();
|
||||
style_itemlist_cursor->set_draw_center(false);
|
||||
style_itemlist_cursor->set_border_width_all(p_config.border_width);
|
||||
style_itemlist_cursor->set_border_width_all(MAX(1 * EDSCALE, p_config.border_width));
|
||||
style_itemlist_cursor->set_border_color(p_config.highlight_color);
|
||||
|
||||
Ref<StyleBoxFlat> style_itemlist_hover = style_tree_selected->duplicate();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue