diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-01-15 13:23:42 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-01-15 13:23:42 +0100 |
commit | c1da69d8f28a1f17e8289437087659b73e749944 (patch) | |
tree | f8eddc9f6a0eb7be53db04750ff5b9ec14380718 /scene/gui/popup_menu.cpp | |
parent | 5f6790aa84a7315ccd7620317fa32444091caf39 (diff) | |
parent | 18fedd9c135e5f48cc7671e688917fd89076998f (diff) | |
download | redot-engine-c1da69d8f28a1f17e8289437087659b73e749944.tar.gz |
Merge pull request #86141 from Maran23/popup-hover-height-calc
Fix Popup hover and height calculation are off by some pixels
Diffstat (limited to 'scene/gui/popup_menu.cpp')
-rw-r--r-- | scene/gui/popup_menu.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/scene/gui/popup_menu.cpp b/scene/gui/popup_menu.cpp index 12e8d3eba9..1923322c22 100644 --- a/scene/gui/popup_menu.cpp +++ b/scene/gui/popup_menu.cpp @@ -287,8 +287,7 @@ int PopupMenu::_get_items_total_height() const { items_total_height += _get_item_height(i) + theme_cache.v_separation; } - // Subtract a separator which is not needed for the last item. - return items_total_height - theme_cache.v_separation; + return items_total_height; } int PopupMenu::_get_mouse_over(const Point2 &p_over) const { @@ -297,14 +296,14 @@ int PopupMenu::_get_mouse_over(const Point2 &p_over) const { } // Accounts for margin in the margin container - Point2 ofs = theme_cache.panel_style->get_offset() + Point2(0, theme_cache.v_separation / 2); + Point2 ofs = theme_cache.panel_style->get_offset(); if (ofs.y > p_over.y) { return -1; } for (int i = 0; i < items.size(); i++) { - ofs.y += i > 0 ? theme_cache.v_separation : (float)theme_cache.v_separation / 2; + ofs.y += theme_cache.v_separation; ofs.y += _get_item_height(i); |