diff --git a/editor/themes/editor_theme_manager.cpp b/editor/themes/editor_theme_manager.cpp index 1793418c2a2..0699c58c1fc 100644 --- a/editor/themes/editor_theme_manager.cpp +++ b/editor/themes/editor_theme_manager.cpp @@ -1051,7 +1051,7 @@ void EditorThemeManager::_populate_standard_styles(const Ref &p_the Ref 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 style_itemlist_hover = style_tree_selected->duplicate();