From: Carlos Garnacho Date: Tue, 13 Jun 2023 22:53:11 +0000 (+0200) Subject: gdk: Include pads in GDK_SEAT_CAPABILITY_ALL X-Git-Tag: archive/raspbian/4.12.3+ds-1+rpi1~1^2^2^2~22^2~1^2~145^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=c523c68cef3e7e0b1a0d8e970a6ff22f69b6adb0;p=gtk4.git gdk: Include pads in GDK_SEAT_CAPABILITY_ALL The GDK_SEAT_CAPABILITY_TABLET_PAD stood awkwardly out of the ALL value. Even though it's not a keyboard, its focus has more resemblance to it, so it should be part of this group together with keyboards. --- diff --git a/gdk/gdkseat.h b/gdk/gdkseat.h index 5c4f09c770..dab7cde80e 100644 --- a/gdk/gdkseat.h +++ b/gdk/gdkseat.h @@ -55,7 +55,7 @@ typedef enum { GDK_SEAT_CAPABILITY_KEYBOARD = 1 << 3, GDK_SEAT_CAPABILITY_TABLET_PAD = 1 << 4, GDK_SEAT_CAPABILITY_ALL_POINTING = (GDK_SEAT_CAPABILITY_POINTER | GDK_SEAT_CAPABILITY_TOUCH | GDK_SEAT_CAPABILITY_TABLET_STYLUS), - GDK_SEAT_CAPABILITY_ALL = (GDK_SEAT_CAPABILITY_ALL_POINTING | GDK_SEAT_CAPABILITY_KEYBOARD) + GDK_SEAT_CAPABILITY_ALL = (GDK_SEAT_CAPABILITY_ALL_POINTING | GDK_SEAT_CAPABILITY_KEYBOARD | GDK_SEAT_CAPABILITY_TABLET_PAD) } GdkSeatCapabilities; struct _GdkSeat