带有图形输入板 (wayland) 的 gimp/krita 中的指针消失

带有图形输入板 (wayland) 的 gimp/krita 中的指针消失

我有一台 xp-pen g430 图形平板电脑,供应商驱动程序对我来说从来都不起作用,但最近发现在 ubuntu 18.04 wayland 中,平板电脑以某种方式被识别,并且最终可以使用 digimend 驱动程序(https://github.com/DIGImend/digimend-kernel-drivers/releases/tag/v9)。问题是,在 krita 或 gimp 中,指针会独立于鼠标,当指针离开画布时,指针就会消失,这使得很难选择其他工具等。鼠标可以用于此目的,但不知何故被触控笔覆盖,因此除非您触摸程序窗口外的某个东西,否则无法用鼠标选择任何东西……

在 /usr/share/X11/xorg.conf.d/50-digimend.conf 中我有:

#
# InputClass sections for some tablets supported by the DIGImend kernel
# drivers. Organized into separate InputClass sections based on (one of) the
# advertised brands. Mostly because the MatchUSBID options would become too
# long otherwise.
#
Section "InputClass"
    Identifier "Huion tablets with Wacom driver"
    MatchUSBID "5543:006e|256c:006e"
    MatchDevicePath "/dev/input/event*"
    Driver "wacom"
EndSection

Section "InputClass"
    Identifier "Ugee/XP-Pen tablets with Wacom driver"
    MatchUSBID "28bd:007[145]|28bd:0094|28bd:0042|5543:004[57]|5543:0081|5543:0004|5543:3031"
    # Exclude the original WP5540U which PID is reused by Ugee M540
    NoMatchProduct "MousePen"
    MatchDevicePath "/dev/input/event*"
    Driver "wacom"
EndSection

Section "InputClass"
    Identifier "Ugtizer tablets with Wacom driver"
    MatchUSBID "2179:0053"
    MatchDevicePath "/dev/input/event*"
    Driver "wacom"
EndSection

Section "InputClass"
    Identifier "Yiynova tablets with Wacom driver"
    MatchUSBID "5543:004d"
    MatchDevicePath "/dev/input/event*"
    Driver "wacom"
EndSection

(我的平板电脑在 28bd:007,但xsetwacom --list devices没有输出任何内容)

答案1

我有一个类似的问题,但就我而言,有两个独立的光标(鼠标和图形表),图形表只是消失了(但不知何故在不同的窗口之间来回移动它又回来了)

https://bugzilla.gnome.org/show_bug.cgi?id=754806

根据这个问题,放大可能会导致光标丢失。你启用了它吗?

相关内容