[clutter/wip/wayland-2: 18/22] device-manager-core-x11: Create core input devices as x11
- From: Neil Roberts <nroberts src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [clutter/wip/wayland-2: 18/22] device-manager-core-x11: Create core input devices as x11
- Date: Wed, 29 Feb 2012 17:58:04 +0000 (UTC)
commit 78e67ec1b76c5621723f4cc589880a9a6db58e42
Author: Neil Roberts <neil linux intel com>
Date: Tue Jan 17 17:29:18 2012 +0000
device-manager-core-x11: Create core input devices as x11
The core input devices when XInput doesn't work were being created as
generic ClutterInputDevices instead of ClutterInputDeviceX11s. This
meant the keycode_to_evdev virtual wouldn't work.
clutter/x11/clutter-device-manager-core-x11.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/clutter/x11/clutter-device-manager-core-x11.c b/clutter/x11/clutter-device-manager-core-x11.c
index 7f0af9f..350864c 100644
--- a/clutter/x11/clutter-device-manager-core-x11.c
+++ b/clutter/x11/clutter-device-manager-core-x11.c
@@ -589,7 +589,7 @@ default_device:
* cover core devices
*/
manager_x11->core_pointer =
- g_object_new (CLUTTER_TYPE_INPUT_DEVICE,
+ g_object_new (CLUTTER_TYPE_INPUT_DEVICE_X11,
"name", "Core Pointer",
"has-cursor", TRUE,
"device-type", CLUTTER_POINTER_DEVICE,
@@ -601,7 +601,7 @@ default_device:
CLUTTER_NOTE (BACKEND, "Added core pointer device");
manager_x11->core_keyboard =
- g_object_new (CLUTTER_TYPE_INPUT_DEVICE,
+ g_object_new (CLUTTER_TYPE_INPUT_DEVICE_X11,
"name", "Core Keyboard",
"has-cursor", FALSE,
"device-type", CLUTTER_KEYBOARD_DEVICE,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]