Fix scroller in Scrollable always being drawn

... instead of only drawing it when the mouse is over the `Scrollable`.
This commit is contained in:
Héctor Ramón Jiménez 2022-12-05 14:44:26 +01:00
parent 91d5516474
commit a2864df098
No known key found for this signature in database
GPG key ID: 140CC052C94F138E

View file

@ -714,9 +714,8 @@ pub fn draw<Renderer>(
);
}
if is_mouse_over
|| state.is_scroller_grabbed()
|| is_scrollbar_visible
if (is_mouse_over || state.is_scroller_grabbed())
&& is_scrollbar_visible
{
renderer.fill_quad(
renderer::Quad {