summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2012-04-16 12:44:24 (GMT)
committerBastien Nocera <hadess@hadess.net>2012-04-16 12:52:45 (GMT)
commite40cb71a910164d1cb2c366d3c001eeaac79aaaf (patch)
tree5920c0db5fc69907706b0ab0f499c410031aeb55
parentb33d006df35651795f04025d4dc1cc57242f3c47 (diff)
downloadgnome-settings-daemon-e40cb71a910164d1cb2c366d3c001eeaac79aaaf.zip
gnome-settings-daemon-e40cb71a910164d1cb2c366d3c001eeaac79aaaf.tar.xz
wacom: Really don't set touchscreens into relative mode
https://bugzilla.gnome.org/show_bug.cgi?id=673919#c3
-rw-r--r--plugins/wacom/gsd-wacom-manager.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/wacom/gsd-wacom-manager.c b/plugins/wacom/gsd-wacom-manager.c
index b6d6665..14a306b 100644
--- a/plugins/wacom/gsd-wacom-manager.c
+++ b/plugins/wacom/gsd-wacom-manager.c
@@ -543,7 +543,8 @@ set_wacom_settings (GsdWacomManager *manager,
type = gsd_wacom_device_get_device_type (device);
- if ((type == WACOM_TYPE_TOUCH) && (!libwacom_is_builtin (device))) {
+ if (type == WACOM_TYPE_TOUCH &&
+ gsd_wacom_device_is_screen_tablet (device) == FALSE) {
set_absolute (device, FALSE);
return;
}