You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For example when I map shift to a button (for resizing brush in Krita) it won't work because it only clicks once and do not hold. This happens because how python script call xdotool key instead of xdotool keydown (sequence come from config file) here:
But now it won't release so we need to modify driver to release that button in this case shift (couldn't find a general solution). I did it by calling xdotool keyup in this case using keypress function gives same result. So I added else statement for this if:
For example when I map shift to a button (for resizing brush in Krita) it won't work because it only clicks once and do not hold. This happens because how python script call
xdotool key
instead ofxdotool keydown
(sequence come from config file) here:huion-linux-drivers/huion-tablet-driver.py
Line 498 in 763e5da
when config looks like this:
Workaround
In config change
key
tokeydown
for button which need holdBut now it won't release so we need to modify driver to release that button in this case shift (couldn't find a general solution). I did it by calling
xdotool keyup
in this case using keypress function gives same result. So I added else statement for this if:huion-linux-drivers/huion-tablet-driver.py
Line 389 in 763e5da
The text was updated successfully, but these errors were encountered: