[gnome-settings-daemon] wacom: Better handling of unknown styli
- From: Bastien Nocera <hadess src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-settings-daemon] wacom: Better handling of unknown styli
- Date: Wed, 25 Jan 2012 17:10:44 +0000 (UTC)
commit 6378151067244bab441cc58f04104a989a8befb7
Author: Bastien Nocera <hadess hadess net>
Date: Wed Jan 25 13:12:47 2012 +0000
wacom: Better handling of unknown styli
For generic tablets, or tablets that don't have the correct list
of styli.
plugins/wacom/gsd-wacom-device.c | 18 +++++++++++++++++-
1 files changed, 17 insertions(+), 1 deletions(-)
---
diff --git a/plugins/wacom/gsd-wacom-device.c b/plugins/wacom/gsd-wacom-device.c
index ad5c841..7f77370 100644
--- a/plugins/wacom/gsd-wacom-device.c
+++ b/plugins/wacom/gsd-wacom-device.c
@@ -1047,9 +1047,25 @@ gsd_wacom_device_set_current_stylus (GsdWacomDevice *device,
}
}
- g_warning ("Could not find stylus ID 0x%x for tablet '%s'", stylus_id, device->priv->name);
+ /* Setting the default stylus to be the generic one */
+ for (l = device->priv->styli; l; l = l->next) {
+ stylus = l->data;
+
+ /* Set a nice default if 0x0 */
+ if (stylus->priv->type == WSTYLUS_GENERAL) {
+ g_debug ("Could not find stylus ID 0x%x for tablet '%s', setting general pen ID 0x%x instead",
+ stylus_id, device->priv->name, stylus->priv->id);
+ g_object_set (device, "last-stylus", stylus, NULL);
+ return;
+ }
+ }
+
+ g_warning ("Could not set the current stylus ID 0x%x for tablet '%s', no general pen found",
+ stylus_id, device->priv->name);
/* Setting the default stylus to be the first one */
+ g_assert (device->priv->styli);
+
stylus = device->priv->styli->data;
g_object_set (device, "last-stylus", stylus, NULL);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]