Guest User

Untitled

a guest
Apr 16th, 2012
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.07 KB | None | 0 0
  1. (gnome-settings-daemon:7808): color-plugin-WARNING **: failed to get edid: unable to get EDID for output
  2.  
  3. (gnome-settings-daemon:7808): color-plugin-WARNING **: failed to get profile checksum: failed to load: not an ICC profile
  4.  
  5. (gnome-settings-daemon:7808): libwacom-WARNING **: Tablet 'usb:056a:0015' has no buttons defined, do something!
  6.  
  7. (gnome-settings-daemon:7808): libwacom-WARNING **: Tablet 'usb:056a:0014' has no buttons defined, do something!
  8.  
  9. (gnome-settings-daemon:7808): libwacom-WARNING **: Tablet 'usb:056a:0013' has no buttons defined, do something!
  10.  
  11. (gnome-settings-daemon:7808): wacom-plugin-WARNING **: Applying settings for device 'Serial Wacom Tablet touch' (type: Touch)
  12.  
  13. (gnome-settings-daemon:7808): wacom-plugin-WARNING **: type = '32'
  14.  
  15. (gnome-settings-daemon:7808): wacom-plugin-WARNING **: gsd_wacom_device_is_screen_tablet = 0
  16.  
  17. (gnome-settings-daemon:7808): wacom-plugin-WARNING **: libwacom_is_builtin = 1
  18.  
  19. (gnome-settings-daemon:7808): wacom-plugin-WARNING **: Applying settings for device 'Serial Wacom Tablet eraser' (type: Eraser)
  20.  
  21. (gnome-settings-daemon:7808): wacom-plugin-WARNING **: type = '4'
  22.  
  23. (gnome-settings-daemon:7808): wacom-plugin-WARNING **: gsd_wacom_device_is_screen_tablet = 0
  24.  
  25. (gnome-settings-daemon:7808): wacom-plugin-WARNING **: libwacom_is_builtin = 1
  26.  
  27. (gnome-settings-daemon:7808): wacom-plugin-WARNING **: Applying settings for device 'Serial Wacom Tablet stylus' (type: Stylus)
  28.  
  29. (gnome-settings-daemon:7808): wacom-plugin-WARNING **: type = '2'
  30.  
  31. (gnome-settings-daemon:7808): wacom-plugin-WARNING **: gsd_wacom_device_is_screen_tablet = 0
  32.  
  33. (gnome-settings-daemon:7808): wacom-plugin-WARNING **: libwacom_is_builtin = 0
  34.  
  35.  
  36. Index: working/plugins/wacom/gsd-wacom-manager.c
  37. ===================================================================
  38. --- working.orig/plugins/wacom/gsd-wacom-manager.c 2012-04-05 15:19:50.154021719 -0700
  39. +++ working/plugins/wacom/gsd-wacom-manager.c 2012-04-05 15:44:04.541820852 -0700
  40. @@ -533,9 +533,9 @@
  41. GsdWacomDeviceType type;
  42. GSettings *settings;
  43.  
  44. - g_debug ("Applying settings for device '%s' (type: %s)",
  45. - gsd_wacom_device_get_tool_name (device),
  46. - gsd_wacom_device_type_to_string (gsd_wacom_device_get_device_type (device)));
  47. + g_warning ("Applying settings for device '%s' (type: %s)",
  48. + gsd_wacom_device_get_tool_name (device),
  49. + gsd_wacom_device_type_to_string (gsd_wacom_device_get_device_type (device)));
  50.  
  51. settings = gsd_wacom_device_get_settings (device);
  52. set_rotation (device, g_settings_get_enum (settings, KEY_ROTATION));
  53. @@ -543,7 +543,12 @@
  54.  
  55. type = gsd_wacom_device_get_device_type (device);
  56.  
  57. - if (type == WACOM_TYPE_TOUCH) {
  58. + g_warning("type = '%d'", type);
  59. + g_warning("gsd_wacom_device_is_screen_tablet = %d",
  60. + gsd_wacom_device_is_screen_tablet(device));
  61. + g_warning("libwacom_is_builtin = %d",
  62. + libwacom_is_builtin (device));
  63. + if ((type == WACOM_TYPE_TOUCH) && (!libwacom_is_builtin (device))) {
  64. set_absolute (device, FALSE);
  65. return;
  66. }
Advertisement
Add Comment
Please, Sign In to add comment