From 17ac870a19d30f04c1ddb6b38d2b7c66bf2203f3 Mon Sep 17 00:00:00 2001 From: Sugarycandybar Date: Sun, 16 Aug 2026 11:53:46 -0400 Subject: [PATCH] carousel: fix touchpad scrolling at the end of the list --- bge/bge-carousel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bge/bge-carousel.c b/bge/bge-carousel.c index 24af917b3..0d715f168 100644 --- a/bge/bge-carousel.c +++ b/bge/bge-carousel.c @@ -1143,8 +1143,8 @@ scroll_begin (BgeCarousel *self, GtkEventControllerScroll *controller) { self->scrolling = TRUE; - self->hscroll_start = self->motion_x; - self->hscroll_current = self->motion_x; + self->hscroll_start = 0; + self->hscroll_current = 0; } static void