diff options
author | FireForge <67974470+fire-forge@users.noreply.github.com> | 2022-09-01 21:51:17 -0500 |
---|---|---|
committer | FireForge <67974470+fire-forge@users.noreply.github.com> | 2022-09-01 21:51:17 -0500 |
commit | 77121efdff23598f04aee4a1e236bcce654b3581 (patch) | |
tree | e4fd47567de6d4f1227d9c3f2eacc52b738bc890 | |
parent | c6fd311da0d0052bb11237662ec528f9fab1b7dd (diff) |
Increase ItemList v_separation in editor theme
ItemList now uses the same value for v_separation as PopupMenu. This makes it easier to select items.
-rw-r--r-- | editor/editor_themes.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_themes.cpp b/editor/editor_themes.cpp index af0e40d1d4..2423f68b22 100644 --- a/editor/editor_themes.cpp +++ b/editor/editor_themes.cpp @@ -1212,7 +1212,7 @@ Ref<Theme> create_editor_theme(const Ref<Theme> p_theme) { theme->set_color("font_color", "ItemList", font_color); theme->set_color("font_selected_color", "ItemList", mono_color); theme->set_color("guide_color", "ItemList", guide_color); - theme->set_constant("v_separation", "ItemList", widget_default_margin.y - EDSCALE); + theme->set_constant("v_separation", "ItemList", force_even_vsep * 0.5 * EDSCALE); theme->set_constant("h_separation", "ItemList", 6 * EDSCALE); theme->set_constant("icon_margin", "ItemList", 6 * EDSCALE); theme->set_constant("line_separation", "ItemList", 3 * EDSCALE); |