From c523c68cef3e7e0b1a0d8e970a6ff22f69b6adb0 Mon Sep 17 00:00:00 2001 From: Carlos Garnacho Date: Wed, 14 Jun 2023 00:53:11 +0200 Subject: [PATCH] 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. --- gdk/gdkseat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.30.2