diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-04-25 16:20:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-25 16:20:19 +0200 |
commit | 02bb8e948fb7ce230d9b293ffc362d305d08538c (patch) | |
tree | dc12804ebc10fd23dbc280d26270563013b4539b /scene/gui/item_list.cpp | |
parent | 49a7f929a6fc45e6f66f4f3c410d06b9966a1e55 (diff) | |
parent | 3073b85de93bd38d9e15064a105afb2eb381fd7d (diff) |
Merge pull request #60261 from fire-forge/theme-prop-renames
Diffstat (limited to 'scene/gui/item_list.cpp')
-rw-r--r-- | scene/gui/item_list.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/gui/item_list.cpp b/scene/gui/item_list.cpp index 35ccde7693..05a5ac75d1 100644 --- a/scene/gui/item_list.cpp +++ b/scene/gui/item_list.cpp @@ -990,8 +990,8 @@ void ItemList::_notification(int p_what) { draw_style_box(bg, Rect2(Point2(), size)); - int hseparation = get_theme_constant(SNAME("hseparation")); - int vseparation = get_theme_constant(SNAME("vseparation")); + int hseparation = get_theme_constant(SNAME("h_separation")); + int vseparation = get_theme_constant(SNAME("v_separation")); int icon_margin = get_theme_constant(SNAME("icon_margin")); int line_separation = get_theme_constant(SNAME("line_separation")); Color font_outline_color = get_theme_color(SNAME("font_outline_color")); |