forked from AuroraMiddleware/gtk
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:
parent
1b0c6e4aa1
commit
0d64582688
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user