git.lucas.co / cce-ui
GPU-accelerated UI toolkit (Vulkan)
git clone https://git.lucas.co/cce-ui.git

commit0b612c9569c9162b85013998669a03eeb630130e
parent73684d4aa6
authorLucas Galante <[email protected]>
date2026-07-04 21:23
Fix ScrollBox mouse input consuming and clean up logging

 src/widget/container/scroll_box.rs | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/widget/container/scroll_box.rs b/src/widget/container/scroll_box.rs
index b94ff76..19f7151 100644
--- a/src/widget/container/scroll_box.rs
+++ b/src/widget/container/scroll_box.rs
@@ -132,7 +132,6 @@ impl Element for ScrollBox {
                 }
                 if self.hit_test(px, py, ctx) {
                     self.focus();
-                    return true;
                 }
             } else if state == ElementState::Released {
                 self.scrollbar_dragging = false;