[Desktop-packages] [Bug 1774242] Re: Wacom touchscreens should use libinput, not wacom driver

2019-08-19 Thread Jason Gerecke
Just a note (mostly to other distro maintainers that may come across
this) that an alternative to completely disabling the Wacom driver's
touchscreen handling is to just add `Option "Gesture" "Off"` to the
touchscreen section of 70-wacom.conf instead.

The driver currently defaults to consuming all multitouch events to
power its own (very limited) gesture recognizer, but the above config
option will let it pass everything through to the desktop and
applications.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xf86-input-wacom in Ubuntu.
https://bugs.launchpad.net/bugs/1774242

Title:
  Wacom touchscreens should use libinput, not wacom driver

Status in xf86-input-wacom package in Ubuntu:
  Fix Released

Bug description:
  /usr/share/X11/xorg.conf.d/70-wacom.conf as shipped, has this:

  Section "InputClass"
  Identifier "Wacom touchscreen class"
  MatchProduct "Wacom|WACOM|PTK-540WL|ISD-V4"
  MatchDevicePath "/dev/input/event*"
  MatchIsTouchscreen "true"
  Driver "wacom"
  EndSection

  The result is that on my Yoga 920, in a plain X11 session (running
  openbox in my case), the touchscreen acts like a broken mouse: there
  is no multi-touch capability in Qt Quick applications, and clicking
  isn't quite right either.  I also verified it with Peter Hutterer's
  old cairo-based mt-touch test program.

  I suspect we will get some users mistakenly writing up Qt bugs about
  this if you don't ship a fix.  (Seems to me that already happened at
  least once, actually.)

  Yes, the touchscreen is made by Wacom, but wacom_drv.so has
  historically been only for Wacom tablets and in-screen stylus
  digitizers, and IMO that continues to be the case.  libinput is a much
  better choice of driver for this hardware (so is evdev for that
  matter), so I changed it to Driver "libinput" and got it working.
  (Wayland uses libinput, so in a wayland session, touch already works
  fine in Qt apps on this hardware.)

  I'm one of the Qt Quick maintainers, most concerned with touch
  handling, and I've also written some of the Qt xcb code for dealing
  with XInput touch and tablet devices.  So if you think that there's
  something wrong with Qt, such that it should still work anyway to use
  a wacom driver for a Wacom touchscreen, let me know.  These AES
  devices are still new to me (that's why I got a Yoga, to try it out).

  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: xserver-xorg-input-wacom 1:0.36.1-0ubuntu1 [modified: 
usr/share/X11/xorg.conf.d/70-wacom.conf]
  ProcVersionSignature: Ubuntu 4.15.0-22.24-generic 4.15.17
  Uname: Linux 4.15.0-22-generic x86_64
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  ApportVersion: 2.20.9-0ubuntu7
  Architecture: amd64
  Date: Wed May 30 19:40:51 2018
  DistUpgraded: Fresh install
  DistroCodename: bionic
  DistroVariant: ubuntu
  MachineType: LENOVO 80Y7
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.15.0-22-generic 
root=ZFS=rpool/ROOT/ubuntu ro
  SourcePackage: xf86-input-wacom
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 02/22/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 5NCN38WW
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40709 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 31
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo YOGA 920-13IKB
  dmi.modalias: 
dmi:bvnLENOVO:bvr5NCN38WW:bd02/22/2018:svnLENOVO:pn80Y7:pvrLenovoYOGA920-13IKB:rvnLENOVO:rnLNVNB161216:rvrSDK0J40709WIN:cvnLENOVO:ct31:cvrLenovoYOGA920-13IKB:
  dmi.product.family: YOGA 920-13IKB
  dmi.product.name: 80Y7
  dmi.product.version: Lenovo YOGA 920-13IKB
  dmi.sys.vendor: LENOVO
  version.compiz: compiz N/A
  version.libdrm2: libdrm2 2.4.91-2
  version.libgl1-mesa-dri: libgl1-mesa-dri 18.0.0~rc5-1ubuntu1
  version.libgl1-mesa-glx: libgl1-mesa-glx 18.0.0~rc5-1ubuntu1
  version.xserver-xorg-core: xserver-xorg-core 2:1.19.6-1ubuntu4
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.10.5-1ubuntu1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:18.0.1-1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20171229-1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.15-2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xf86-input-wacom/+bug/1774242/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1748876] Re: One by Wacom (medium tablet) not reported by libwacom

2018-04-03 Thread Jason Gerecke
In addition to the Linux 4.16 requirement pointed out by Michael, Ubuntu
will need to update libwacom to at least version 0.28 for the device to
appear in the control panel.

Until Ubuntu includes updates, you can build libwacom from source[1][2]
as well as get the "input-wacom" kernel backports (version 0.39.0 added
support for these devices)[3][4].

[1]: https://github.com/linuxwacom/libwacom/releases
[2]: https://github.com/linuxwacom/libwacom/wiki
[3]: https://github.com/linuxwacom/input-wacom/releases
[4]: 
https://github.com/linuxwacom/input-wacom/wiki/Installing-input-wacom-from-source

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libwacom in Ubuntu.
https://bugs.launchpad.net/bugs/1748876

Title:
  One by Wacom (medium tablet) not reported by libwacom

Status in libwacom package in Ubuntu:
  New

Bug description:
  uname -r 
  4.4.0-98-generic

  
  lsusb
  Bus 001 Device 013: ID 056a:037b Wacom Co., Ltd
  xsetwacom --list devices
  #null output
  /usr/bin/libwacom-list-local-devices
  #always the same output regardless connected tablet or not
  [Device]
  Name=Wacom Serial Tablet WACf004
  DeviceMatch=serial::;
  Class=ISDV4
  Width=0
  Height=0
  IntegratedIn=Display;System;
  Styli=0xf;0xe;

  [Features]
  Reversible=false
  Stylus=true
  Ring=false
  Ring2=false
  Touch=false
  TouchSwitch=false
  StatusLEDs=
  NumStrips=0
  Buttons=0

  dmesg

  [15336.978171] usb 1-1.1: new full-speed USB device number 13 using ehci-pci
  [15337.076227] usb 1-1.1: New USB device found, idVendor=056a, idProduct=037b
  [15337.076239] usb 1-1.1: New USB device strings: Mfr=1, Product=2, 
SerialNumber=3
  [15337.076244] usb 1-1.1: Product: CTL-672
  [15337.076249] usb 1-1.1: Manufacturer: Wacom Co.,Ltd.
  [15337.076253] usb 1-1.1: SerialNumber: 7HE00M100462
  [15337.145463] wacom: module verification failed: signature and/or required 
key missing - tainting kernel
  [15337.147120] input: Wacom CTL-672 Pen as 
/devices/pci:00/:00:1a.0/usb1/1-1/1-1.1/1-1.1:1.0/0003:056A:037B.0003/input/input41
  [15337.147324] wacom 0003:056A:037B.0003: hidraw2: USB HID v1.10 Mouse [Wacom 
Co.,Ltd. CTL-672] on usb-:00:1a.0-1.1/input0
  [15337.147424] wacom 0003:056A:037B.0004: Unknown device_type for 'Wacom 
Co.,Ltd. CTL-672'. Ignoring.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libwacom/+bug/1748876/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1753525] Re: Wacom tablet not recognized in Settings > Devices

2018-03-19 Thread Jason Gerecke
linuxcub, my apologies for not replying sooner -- I don't think I got a
notification of your messages for some reason...

Its odd that installing/reinstalling portions of Ubuntu seem to fix the
issue. It looks like the Bionic beta only relased IOSs for Kubuntu,
Budgie, Kylin, MATE, and Xubuntu. I wonder if their GNOME flavor is
still in development and was updated to a broken version when you
installed. Force-installing the ubuntu-gnome-desktop and gnome-control-
center packages may have brought down a fixed version? Without an
official GNOME ISO for me to test, it'll be hard for me to replicate
your issue to see if its still present.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/1753525

Title:
  Wacom tablet not recognized in Settings > Devices

Status in gnome-control-center package in Ubuntu:
  New

Bug description:
  I have the same problem with Ubuntu 18.04 developing branch as described for 
Ubuntu 16.04 in
  https://bugs.launchpad.net/ubuntu/+source/unity-control-center/+bug/1575887
  I can draw, e.g., with tuxpaint, I can use stylus and graphic tablet "Wacom 
Intuos Art Black Pen + Touch S" like a touchpad with mouse (left, muddle, right 
button), but I cannot access the pad via Settings > Devices > Wacom Tablet: 
"Stylus not recognized". So, no reprogramming of stylus buttons and tablet 
buttons :(

  Hopefully this will be resolved till the final version of 18.04 in
  April?

  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: gnome-control-center 1:3.26.2-0ubuntu5
  ProcVersionSignature: Ubuntu 4.15.0-10.11-generic 4.15.3
  Uname: Linux 4.15.0-10-generic x86_64
  ApportVersion: 2.20.8-0ubuntu10
  Architecture: amd64
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Mar  5 16:48:48 2018
  ExecutablePath: /usr/bin/gnome-control-center
  InstallationDate: Installed on 2018-03-05 (0 days ago)
  InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Alpha amd64 (20180304)
  SourcePackage: gnome-control-center
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1753525/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1753525] Re: Wacom tablet not recognized in Settings > Devices

2018-03-05 Thread Jason Gerecke
The "stylus not recognized" part of this issue is almost certainly
https://bugzilla.gnome.org/show_bug.cgi?id=793499.

No access to the pad device on the other hand is not an issue I'm
familiar with. The old unity-control-center bug that OP linked do was
due to an issue with GNOME not being compatible with tablets whose pens
don't have an eraser. That issue was fixed in GNOME 3.16, however, and
shouldn't be present in the current version of the gnome-control-center.

I do see a reference to somebody else having similar pad issues upstream
at https://bugzilla.gnome.org/show_bug.cgi?id=789287 but it doesn't look
like anyone has begun to dig into the bug. My own (Arch Linux) system
doesn't exhibit the pad issue with an Intuos Art Medium (CTH-690) and
GNOME 3.26, for what its worth.



linuxcub: You should have both a "Stylus" and "Tablet" button at the top
of the Wacom control panel, next to "Test your Settings". The "Stylus"
button shows "Stylus not Recognized", but what message appears when the
"Tablet" button is pressed? Or are the buttons missing? That might give
a place to start digging...

** Bug watch added: GNOME Bug Tracker #793499
   https://bugzilla.gnome.org/show_bug.cgi?id=793499

** Bug watch added: GNOME Bug Tracker #789287
   https://bugzilla.gnome.org/show_bug.cgi?id=789287

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/1753525

Title:
  Wacom tablet not recognized in Settings > Devices

Status in gnome-control-center package in Ubuntu:
  New

Bug description:
  I have the same problem with Ubuntu 18.04 developing branch as described for 
Ubuntu 16.04 in
  https://bugs.launchpad.net/ubuntu/+source/unity-control-center/+bug/1575887
  I can draw, e.g., with tuxpaint, I can use stylus and graphic tablet "Wacom 
Intuos Art Black Pen + Touch S" like a touchpad with mouse (left, muddle, right 
button), but I cannot access the pad via Settings > Devices > Wacom Tablet: 
"Stylus not recognized". So, no reprogramming of stylus buttons and tablet 
buttons :(

  Hopefully this will be resolved till the final version of 18.04 in
  April?

  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: gnome-control-center 1:3.26.2-0ubuntu5
  ProcVersionSignature: Ubuntu 4.15.0-10.11-generic 4.15.3
  Uname: Linux 4.15.0-10-generic x86_64
  ApportVersion: 2.20.8-0ubuntu10
  Architecture: amd64
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Mar  5 16:48:48 2018
  ExecutablePath: /usr/bin/gnome-control-center
  InstallationDate: Installed on 2018-03-05 (0 days ago)
  InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Alpha amd64 (20180304)
  SourcePackage: gnome-control-center
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1753525/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1575887] Re: Intuos Art / Intuos Draw 2015 isn't detected by the wacom properties window

2018-03-05 Thread Jason Gerecke
linuxcub, the "Stylus not recognized" is actually a different issue than
the one described here. The upstream bug filed for that particular issue
can be found at https://bugzilla.gnome.org/show_bug.cgi?id=793499

You should file a new issue against Ubuntu 18.04 (specifically the )
which references the GNOME bug I linked to. This will ensure the Ubuntu
developers can track the bug and hopefully work with GNOME upstream to
get it fixed before the April release. The bug likely affects *all*
lower-end tablets (i.e. non-Pro Intuos and Bamboo) based on the
diagnosis.

It would be appreciated if you could give me a link to the bug you end
up filing against 18.04. I'd like to subscribe to it for updates.

** Bug watch added: GNOME Bug Tracker #793499
   https://bugzilla.gnome.org/show_bug.cgi?id=793499

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to unity-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/1575887

Title:
  Intuos Art / Intuos Draw 2015 isn't detected by the wacom properties
  window

Status in unity-control-center package in Ubuntu:
  Confirmed

Bug description:
  The section in system configuration called "Wacom Tablet" isn't
  detecting my Wacom Intuos Art Small 2015, i'm using Ubuntu 16.04 with
  4.4 kernel, i installed the drivers of linux wacom but the issue
  continue.I expected that ubuntu will detect the tablet and the wacom
  properties setting will work.

  INFO:
  Description:  Ubuntu 16.04 LTS
  Release:  16.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-control-center/+bug/1575887/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1575887] Re: Intuos Art / Intuos Draw 2015 isn't detected by the wacom properties window

2017-04-17 Thread Jason Gerecke
Eugenio, the three workarounds I'm aware of are:

  * Use the GNOME desktop environment instead of Unity.
  * Use the command-line based `xsetwacom` utility instead of the GUI.
  * Use a different tablet.

I suppose could try getting in touch with the Ubuntu team (e.g. through
IRC) to make sure they're both aware that this bug exists and that it
has been fixed in upstream GNOME for a while. Recent news is that Ubuntu
will be switching to using GNOME instead of Unity in 2018, so even if
this bug never gets fixed it should be less visible as fewer people use
Unity...

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to unity-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/1575887

Title:
  Intuos Art / Intuos Draw 2015 isn't detected by the wacom properties
  window

Status in unity-control-center package in Ubuntu:
  Confirmed

Bug description:
  The section in system configuration called "Wacom Tablet" isn't
  detecting my Wacom Intuos Art Small 2015, i'm using Ubuntu 16.04 with
  4.4 kernel, i installed the drivers of linux wacom but the issue
  continue.I expected that ubuntu will detect the tablet and the wacom
  properties setting will work.

  INFO:
  Description:  Ubuntu 16.04 LTS
  Release:  16.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-control-center/+bug/1575887/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1575887] Re: Intuos Art 2015 isn't detected by the wacom propierties window

2016-06-08 Thread Jason Gerecke
Bug is in unity-control-center. Upstream gnome-control-center had an
issue with not displaying tablets that had no eraser, such as the newest
generation of Wacom's Intuos tablets: "Intuos Draw" and "Intuos
Art"(models CTL-490, CTH-490, CTL-690, CTH-690). The issue appears to
have been fixed for GNOME 3.16 -- the  upstream bug report can be found
at https://bugzilla.gnome.org/show_bug.cgi?id=746117

See also the bug filed at the linuxwacom project:
https://sourceforge.net/p/linuxwacom/bugs/320/

** Bug watch added: GNOME Bug Tracker #746117
   https://bugzilla.gnome.org/show_bug.cgi?id=746117

** Package changed: xorg (Ubuntu) => unity-control-center (Ubuntu)

** Summary changed:

- Intuos Art 2015 isn't detected by the wacom propierties window
+ Intuos Art / Intuos Draw 2015 isn't detected by the wacom propierties window

** Summary changed:

- Intuos Art / Intuos Draw 2015 isn't detected by the wacom propierties window
+ Intuos Art / Intuos Draw 2015 isn't detected by the wacom properties window

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to unity-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/1575887

Title:
  Intuos Art / Intuos Draw 2015 isn't detected by the wacom properties
  window

Status in unity-control-center package in Ubuntu:
  Confirmed

Bug description:
  The section in system configuration called "Wacom Tablet" isn't
  detecting my Wacom Intuos Art Small 2015, i'm using Ubuntu 16.04 with
  4.4 kernel, i installed the drivers of linux wacom but the issue
  continue.I expected that ubuntu will detect the tablet and the wacom
  properties setting will work.

  INFO:
  Description:  Ubuntu 16.04 LTS
  Release:  16.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-control-center/+bug/1575887/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1562387] Re: digimend / wacom drivers do not recognize chinese clone

2016-04-08 Thread Jason Gerecke
The xorg.conf.d configuration files are applied one after the other, so
your edits to 10-evdev.conf should be unnecessary (since the settings
from your 50-huion.conf file will be applied after it). I would suggest
filing a bug with linuxwacom (on Sourceforge) indicating that Huion
tablets are not covered by the 50-wacom.conf file like other tablets.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xf86-input-wacom in Ubuntu.
https://bugs.launchpad.net/bugs/1562387

Title:
  digimend / wacom drivers do not recognize chinese clone

Status in xf86-input-wacom package in Ubuntu:
  New

Bug description:
  I have a chinese Gaomon 860T tablet, it is a clone of a Huion H610
  tablet which in turn should be supported by digimend drivers (which
  are installed and loaded). However, it is only partially recognized as
  such - xsetwacom does not recognize, but libwacom-list-local-devices
  does, also xinput list correctly lists them but the wacom tablet entry
  in system settings says "No tablet detected".

  I am left-handed and I need the system settings wacom configuration to
  work so that I can use the tablet as left-handed tablet. This is a
  showstopper for me and I need that working to do my job.

  Here are the commands I used. I am using stock digimend-dkms from
  Ubuntu repository, which seems to be up-to-date with digimend github:

  [17:01] [4853] [patola@trololo /tmp]% xsetwacom --list devices
  [17:01] [4854] [patola@trololo /tmp]% /usr/bin/libwacom-list-local-devices
  [Device]
  Name=Huion H610 Pro
  DeviceMatch=usb:256c:006e:HUION PenTablet Pen;usb:256c:006e:HUION PenTablet 
Pad;
  Class=Bamboo
  Width=10
  Height=6
  IntegratedIn=
  Layout=huion-h610-pro.svg
  Styli=0xd;

  [Features]
  Reversible=true
  Stylus=true
  Ring=false
  Ring2=false
  Touch=false
  TouchSwitch=false
  StatusLEDs=
  NumStrips=0
  Buttons=8
  [Buttons]
  Left=A;B;C;D;E;F;G;H;
  Right=
  Top=
  Bottom=
  Touchstrip=
  Touchstrip2=
  OLEDs=
  Ring=
  Ring2=
  RingNumModes=0
  Ring2NumModes=0
  StripsNumModes=0

  ---
  [Device]
  Name=Huion H610 Pro
  DeviceMatch=usb:256c:006e:HUION PenTablet Pen;usb:256c:006e:HUION PenTablet 
Pad;
  Class=Bamboo
  Width=10
  Height=6
  IntegratedIn=
  Layout=huion-h610-pro.svg
  Styli=0xd;

  [Features]
  Reversible=true
  Stylus=true
  Ring=false
  Ring2=false
  Touch=false
  TouchSwitch=false
  StatusLEDs=
  NumStrips=0
  Buttons=8
  [Buttons]
  Left=A;B;C;D;E;F;G;H;
  Right=
  Top=
  Bottom=
  Touchstrip=
  Touchstrip2=
  OLEDs=
  Ring=
  Ring2=
  RingNumModes=0
  Ring2NumModes=0
  StripsNumModes=0

  ---
  [17:01] [4855] [patola@trololo /tmp]% dpkg -l | grep digimend
  ii  digimend-dkms   6 
  all  A collection of graphics 
tablet drivers by DIGImend project
  [17:04] [4856] [patola@trololo /tmp]% xinput list
  ⎡ Virtual core pointer  id=2[master pointer  (3)]
  ⎜   ↳ Virtual core XTEST pointerid=4[slave  pointer  (2)]
  ⎜   ↳ USB USB Keykoard  id=9[slave  pointer  (2)]
  ⎜   ↳ ImPS/2 Generic Wheel Mouseid=10   [slave  pointer  (2)]
  ⎜   ↳ HUION PenTablet Pad   id=11   [slave  pointer  (2)]
  ⎜   ↳ HUION PenTablet Pen   id=12   [slave  pointer  (2)]
  ⎜   ↳ HUION PenTablet Mouse id=13   [slave  pointer  (2)]
  ⎜   ↳ HUION PenTablet Consumer Control  id=16   [slave  pointer  (2)]
  ⎣ Virtual core keyboard id=3[master keyboard (2)]
  ↳ Virtual core XTEST keyboard   id=5[slave  keyboard (3)]
  ↳ Power Button  id=6[slave  keyboard (3)]
  ↳ Power Button  id=7[slave  keyboard (3)]
  ↳ USB USB Keykoard  id=8[slave  keyboard (3)]
  ↳ HUION PenTablet System Controlid=14   [slave  keyboard (3)]
  ↳ HUION PenTablet Keyboard  id=15   [slave  keyboard (3)]
  [17:04] [4857] [patola@trololo /tmp]%

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xf86-input-wacom/+bug/1562387/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1532052] Re: "no tablet detected" message in system settings for otherwise-working tablet

2016-01-12 Thread Jason Gerecke
Also affects Ubuntu 14.04 now that it pairs the 3.19 kernel with the 0.8
libwacom.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libwacom in Ubuntu.
https://bugs.launchpad.net/bugs/1532052

Title:
  "no tablet detected" message in system settings for otherwise-working
  tablet

Status in Linux Mint:
  New
Status in trusty-backports:
  New
Status in libwacom package in Ubuntu:
  Fix Released

Bug description:
  The "Graphics Tablet" panel of the System Settings application reports
  "No tablet detected" for any tablet, despite the tablets actually
  moving around the mouse cursor and being usable in applications like
  GIMP.  This prevents the graphical configuration of tablet settings.

  This is with a fresh install of Linux Mint 17.3 'Rosa' (Cinnamon
  64-bit). This message appears even for tablets which were able to be
  configured under 17.2.

To manage notifications about this bug go to:
https://bugs.launchpad.net/linuxmint/+bug/1532052/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1532052] Re: "no tablet detected" message in system settings for otherwise-working tablet

2016-01-12 Thread Jason Gerecke
** Also affects: trusty-backports
   Importance: Undecided
   Status: New

** Changed in: libwacom (Ubuntu)
   Status: New => Fix Released

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libwacom in Ubuntu.
https://bugs.launchpad.net/bugs/1532052

Title:
  "no tablet detected" message in system settings for otherwise-working
  tablet

Status in Linux Mint:
  New
Status in trusty-backports:
  New
Status in libwacom package in Ubuntu:
  Fix Released

Bug description:
  The "Graphics Tablet" panel of the System Settings application reports
  "No tablet detected" for any tablet, despite the tablets actually
  moving around the mouse cursor and being usable in applications like
  GIMP.  This prevents the graphical configuration of tablet settings.

  This is with a fresh install of Linux Mint 17.3 'Rosa' (Cinnamon
  64-bit). This message appears even for tablets which were able to be
  configured under 17.2.

To manage notifications about this bug go to:
https://bugs.launchpad.net/linuxmint/+bug/1532052/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1532052] Re: "no tablet detected" message in system settings for otherwise-working tablet

2016-01-12 Thread Jason Gerecke
** Also affects: libwacom (Ubuntu)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libwacom in Ubuntu.
https://bugs.launchpad.net/bugs/1532052

Title:
  "no tablet detected" message in system settings for otherwise-working
  tablet

Status in Linux Mint:
  New
Status in libwacom package in Ubuntu:
  New

Bug description:
  The "Graphics Tablet" panel of the System Settings application reports
  "No tablet detected" for any tablet, despite the tablets actually
  moving around the mouse cursor and being usable in applications like
  GIMP.  This prevents the graphical configuration of tablet settings.

  This is with a fresh install of Linux Mint 17.3 'Rosa' (Cinnamon
  64-bit). This message appears even for tablets which were able to be
  configured under 17.2.

To manage notifications about this bug go to:
https://bugs.launchpad.net/linuxmint/+bug/1532052/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp