]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
patch 9.1.0086: Problem when scrolling using slow touchpads scroll event v9.1.0086
authorlilydjwg <lilydjwg@gmail.com>
Fri, 9 Feb 2024 18:24:23 +0000 (19:24 +0100)
committerChristian Brabandt <cb@256bit.org>
Fri, 9 Feb 2024 18:24:23 +0000 (19:24 +0100)
Problem:  Problem when scrolling using slow touchpads scroll event
Solution: better ways to determine if a smooth scroll has ended (when
          available) (lilydjwg)

related: #13997

Signed-off-by: lilydjwg <lilydjwg@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
src/gui_gtk_x11.c
src/version.c

index a89a7742930222a187aa6f4d47a0c0c3c73c6ac4..518edaf04f0414548c81922a7c1812baac100be1 100644 (file)
@@ -2049,7 +2049,7 @@ button_press_event(GtkWidget *widget,
 }
 
 /*
- * GTK+ abstracts scrolling via the GdkEventScroll.
+ * GTK+ abstracts scrolling via the GdkEventScroll.
  */
     static gboolean
 scroll_event(GtkWidget *widget,
@@ -2060,7 +2060,9 @@ scroll_event(GtkWidget *widget,
     int_u   vim_modifiers;
 #if GTK_CHECK_VERSION(3,4,0)
     static double  acc_x, acc_y;
+#if !GTK_CHECK_VERSION(3,22,0)
     static guint32 last_smooth_event_time;
+#endif
 #define DT_X11     1
 #define DT_WAYLAND 2
     static display_type;
@@ -2087,12 +2089,25 @@ scroll_event(GtkWidget *widget,
            break;
 #if GTK_CHECK_VERSION(3,4,0)
        case GDK_SCROLL_SMOOTH:
+           if (event->is_stop)
+           {
+               acc_x = acc_y = 0;
+               // this event tells us to stop, without an actual moving
+               return FALSE;
+           }
+#if GTK_CHECK_VERSION(3,22,0)
+           if (gdk_device_get_axes(event->device) & GDK_AXIS_FLAG_WHEEL)
+               // this is from a wheel (as oppose to a touchpad / trackpoint)
+#else
            if (event->time - last_smooth_event_time > 50)
                // reset our accumulations after 50ms of silence
+#endif
                acc_x = acc_y = 0;
            acc_x += event->delta_x;
            acc_y += event->delta_y;
+#if !GTK_CHECK_VERSION(3,22,0)
            last_smooth_event_time = event->time;
+#endif
            break;
 #endif
        default: // This shouldn't happen
index 33325a664d3fc31cce29f82f1c0611c0f38299d6..8002c95b6da3266929109897cb897762443c1829 100644 (file)
@@ -704,6 +704,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    86,
 /**/
     85,
 /**/