wayland: Keyboard don't have x/y

These axes are not very useful in the first place, but on a
keyboard they just don't make any sense at all.
This commit is contained in:
Matthias Clasen 2016-04-09 17:31:39 -04:00
parent 1b0c6e4aa1
commit 0d64582688

View File

@ -2716,6 +2716,7 @@ seat_handle_capabilities (void *data,
"device-manager", seat->device_manager,
"seat", seat,
NULL);
_gdk_device_reset_axes (seat->keyboard);
_gdk_device_set_associated_device (seat->keyboard, seat->master_keyboard);
device_manager->devices =
@ -3478,6 +3479,7 @@ init_devices (GdkWaylandSeat *seat)
"device-manager", device_manager,
"seat", seat,
NULL);
GDK_WAYLAND_DEVICE (seat->master_pointer)->pointer = &seat->pointer_info;
device_manager->devices =
@ -3495,6 +3497,7 @@ init_devices (GdkWaylandSeat *seat)
"device-manager", device_manager,
"seat", seat,
NULL);
_gdk_device_reset_axes (seat->master_keyboard);
device_manager->devices =
g_list_prepend (device_manager->devices, seat->master_keyboard);