Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (gnome-settings-daemon:7808): color-plugin-WARNING **: failed to get edid: unable to get EDID for output
- (gnome-settings-daemon:7808): color-plugin-WARNING **: failed to get profile checksum: failed to load: not an ICC profile
- (gnome-settings-daemon:7808): libwacom-WARNING **: Tablet 'usb:056a:0015' has no buttons defined, do something!
- (gnome-settings-daemon:7808): libwacom-WARNING **: Tablet 'usb:056a:0014' has no buttons defined, do something!
- (gnome-settings-daemon:7808): libwacom-WARNING **: Tablet 'usb:056a:0013' has no buttons defined, do something!
- (gnome-settings-daemon:7808): wacom-plugin-WARNING **: Applying settings for device 'Serial Wacom Tablet touch' (type: Touch)
- (gnome-settings-daemon:7808): wacom-plugin-WARNING **: type = '32'
- (gnome-settings-daemon:7808): wacom-plugin-WARNING **: gsd_wacom_device_is_screen_tablet = 0
- (gnome-settings-daemon:7808): wacom-plugin-WARNING **: libwacom_is_builtin = 1
- (gnome-settings-daemon:7808): wacom-plugin-WARNING **: Applying settings for device 'Serial Wacom Tablet eraser' (type: Eraser)
- (gnome-settings-daemon:7808): wacom-plugin-WARNING **: type = '4'
- (gnome-settings-daemon:7808): wacom-plugin-WARNING **: gsd_wacom_device_is_screen_tablet = 0
- (gnome-settings-daemon:7808): wacom-plugin-WARNING **: libwacom_is_builtin = 1
- (gnome-settings-daemon:7808): wacom-plugin-WARNING **: Applying settings for device 'Serial Wacom Tablet stylus' (type: Stylus)
- (gnome-settings-daemon:7808): wacom-plugin-WARNING **: type = '2'
- (gnome-settings-daemon:7808): wacom-plugin-WARNING **: gsd_wacom_device_is_screen_tablet = 0
- (gnome-settings-daemon:7808): wacom-plugin-WARNING **: libwacom_is_builtin = 0
- Index: working/plugins/wacom/gsd-wacom-manager.c
- ===================================================================
- --- working.orig/plugins/wacom/gsd-wacom-manager.c 2012-04-05 15:19:50.154021719 -0700
- +++ working/plugins/wacom/gsd-wacom-manager.c 2012-04-05 15:44:04.541820852 -0700
- @@ -533,9 +533,9 @@
- GsdWacomDeviceType type;
- GSettings *settings;
- - g_debug ("Applying settings for device '%s' (type: %s)",
- - gsd_wacom_device_get_tool_name (device),
- - gsd_wacom_device_type_to_string (gsd_wacom_device_get_device_type (device)));
- + g_warning ("Applying settings for device '%s' (type: %s)",
- + gsd_wacom_device_get_tool_name (device),
- + gsd_wacom_device_type_to_string (gsd_wacom_device_get_device_type (device)));
- settings = gsd_wacom_device_get_settings (device);
- set_rotation (device, g_settings_get_enum (settings, KEY_ROTATION));
- @@ -543,7 +543,12 @@
- type = gsd_wacom_device_get_device_type (device);
- - if (type == WACOM_TYPE_TOUCH) {
- + g_warning("type = '%d'", type);
- + g_warning("gsd_wacom_device_is_screen_tablet = %d",
- + gsd_wacom_device_is_screen_tablet(device));
- + g_warning("libwacom_is_builtin = %d",
- + libwacom_is_builtin (device));
- + if ((type == WACOM_TYPE_TOUCH) && (!libwacom_is_builtin (device))) {
- set_absolute (device, FALSE);
- return;
- }
Advertisement
Add Comment
Please, Sign In to add comment