Summary: | Ability to switch to relative mode for graphic tablet | ||
---|---|---|---|
Product: | [Applications] systemsettings | Reporter: | Raghavendra kamath <raghu> |
Component: | kcm_tablet | Assignee: | Plasma Bugs List <plasma-bugs> |
Status: | RESOLVED FIXED | ||
Severity: | wishlist | CC: | aleixpol, capitalex, fanzhuyifan, klaymorer, madness742, nate, sebi.loew |
Priority: | NOR | ||
Version First Reported In: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Other | ||
OS: | Linux | ||
Latest Commit: | https://invent.kde.org/plasma/kwin/-/commit/3afdd02e021b9faf3adc797a7cc4f8a82ff9fd4f | Version Fixed In: | 6.4.0 |
Sentry Crash Report: |
Description
Raghavendra kamath
2023-12-02 08:37:58 UTC
I switched to a graphics tablet as a mouse replacement, because of bad wrist pain in my hand, even with an ergonomic mouse. Sadly, without the relative input mode I can't use it under linux. I hope someone can implement this for wayland, because soon with fedora there is no X11 anymore and I also love using wayland for my workflow. Thanks a lot for all the awesome work! A possibly relevant merge request was started @ https://invent.kde.org/plasma/kwin/-/merge_requests/4852 A possibly relevant merge request was started @ https://invent.kde.org/plasma/plasma-desktop/-/merge_requests/1963 *** Bug 482762 has been marked as a duplicate of this bug. *** Git commit 3afdd02e021b9faf3adc797a7cc4f8a82ff9fd4f by Nicolas Fella. Committed on 24/04/2025 at 11:40. Pushed by nicolasfella into branch 'master'. Add relative mode for graphics tablet Graphics tablets normally operate in an absolute manner where the input event position gets applied to a screen more or less directly. However some people prefer it operating in a relative manner where it works more similar to a mouse where movements of the stylus are added to the current cursor position. M +26 -11 src/backends/libinput/connection.cpp M +14 -0 src/backends/libinput/device.cpp M +16 -0 src/backends/libinput/device.h M +5 -0 src/core/inputdevice.cpp M +4 -0 src/core/inputdevice.h M +5 -0 src/hide_cursor_spy.cpp M +2 -0 src/input.cpp M +71 -10 src/tablet_input.cpp M +3 -0 src/tablet_input.h https://invent.kde.org/plasma/kwin/-/commit/3afdd02e021b9faf3adc797a7cc4f8a82ff9fd4f Git commit 13d3cbf16e5c6be75a30e28f240fec9307556df7 by Nate Graham, on behalf of Nicolas Fella. Committed on 25/04/2025 at 05:51. Pushed by nicolasfella into branch 'master'. [kcms/tablet] Add setting for relative mode M +13 -2 kcms/libkwindevices/inputdevice.cpp M +13 -3 kcms/libkwindevices/inputdevice.h M +58 -0 kcms/tablet/ui/StylusTab.qml https://invent.kde.org/plasma/plasma-desktop/-/commit/13d3cbf16e5c6be75a30e28f240fec9307556df7 (In reply to sebi.loew from comment #1) > I switched to a graphics tablet as a mouse replacement, because of bad wrist > pain in my hand, even with an ergonomic mouse. > Sadly, without the relative input mode I can't use it under linux. > I hope someone can implement this for wayland, because soon with fedora > there is no X11 anymore and I also love using wayland for my workflow. > > Thanks a lot for all the awesome work! I believe OpenTabletDriver can be set up on Wayland with relative mode, but it is nicer to have the setting directly in Plasma. |