fix tablet in hyprland
This commit is contained in:
parent
49a343406f
commit
fe00a6128e
22
patches/hyprland-tablet.patch
Normal file
22
patches/hyprland-tablet.patch
Normal file
@ -0,0 +1,22 @@
|
||||
diff --git a/src/managers/input/Tablets.cpp b/src/managers/input/Tablets.cpp
|
||||
index 0952a7d..f61d818 100644
|
||||
--- a/src/managers/input/Tablets.cpp
|
||||
+++ b/src/managers/input/Tablets.cpp
|
||||
@@ -159,13 +159,12 @@ void CInputManager::onTabletAxis(CTablet::SAxisEvent e) {
|
||||
void CInputManager::onTabletTip(CTablet::STipEvent e) {
|
||||
const auto PTAB = e.tablet;
|
||||
const auto PTOOL = ensureTabletToolPresent(e.tool);
|
||||
- const auto POS = e.tip;
|
||||
- g_pPointerManager->warpAbsolute(POS, PTAB);
|
||||
- refocusTablet(PTAB, PTOOL, true);
|
||||
|
||||
- if (e.in)
|
||||
+ if (e.in) {
|
||||
+ simulateMouseMovement();
|
||||
+ refocusTablet(PTAB, PTOOL);
|
||||
PROTO::tablet->down(PTOOL);
|
||||
- else
|
||||
+ } else
|
||||
PROTO::tablet->up(PTOOL);
|
||||
|
||||
PTOOL->isDown = e.in;
|
@ -48,6 +48,12 @@ with lib; {
|
||||
'';
|
||||
});
|
||||
|
||||
hyprland = prev.hyprland.overrideAttrs (oa: {
|
||||
patches = (oa.patches or []) ++ [
|
||||
../patches/hyprland-tablet.patch
|
||||
];
|
||||
});
|
||||
|
||||
neatvnc = prev.neatvnc.overrideAttrs (oa: {
|
||||
patches = [ ../patches/neatvnc.patch ] ++ oa.patches or [ ];
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user