fix(linux/input): handle pen EVENT_MOVE events (#2841)

This commit is contained in:
Christos Falas
2024-07-13 21:53:06 +02:00
committed by GitHub
parent ba68caf6a8
commit 8187a28afc
+4 -2
View File
@@ -61,11 +61,13 @@ namespace platf::pen {
tilt_y = std::atan2(std::cos(-rotation_rads) * r, z) * 180.f / M_PI; tilt_y = std::atan2(std::cos(-rotation_rads) * r, z) * 180.f / M_PI;
} }
bool is_touching = pen.eventType == LI_TOUCH_EVENT_DOWN || pen.eventType == LI_TOUCH_EVENT_MOVE;
(*raw->pen).place_tool(tool, (*raw->pen).place_tool(tool,
pen.x, pen.x,
pen.y, pen.y,
pen.eventType == LI_TOUCH_EVENT_DOWN ? pen.pressureOrDistance : -1, is_touching ? pen.pressureOrDistance : -1,
pen.eventType == LI_TOUCH_EVENT_HOVER ? pen.pressureOrDistance : -1, is_touching ? -1 : pen.pressureOrDistance,
tilt_x, tilt_x,
tilt_y); tilt_y);
} }