[clutter] 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] device-manager-core-x11: Create core input devices as x11
- Date: Thu, 1 Mar 2012 11:48:59 +0000 (UTC)
commit a0d3b01aa967e3740bc22c925864acac1829da62
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.
Reviewed-by: Emmanuele Bassi <ebassi linux intel com>
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]