Correctly clamp scroll offset vertically

Antonio Scandurra created

Change summary

crates/gpui2/src/elements/div.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

crates/gpui2/src/elements/div.rs 🔗

@@ -1472,7 +1472,7 @@ impl Interactivity {
                             {
                                 let mut scroll_offset = scroll_offset.borrow_mut();
                                 scroll_offset.x = scroll_offset.x.clamp(-scroll_max.width, px(0.));
-                                scroll_offset.y = scroll_offset.x.clamp(-scroll_max.height, px(0.));
+                                scroll_offset.y = scroll_offset.y.clamp(-scroll_max.height, px(0.));
                             }
 
                             let interactive_bounds = interactive_bounds.clone();