mirror of
https://github.com/LizardByte/Sunshine.git
synced 2025-02-06 09:39:50 +00:00
fix(linux/input): handle pen EVENT_MOVE events (#2841)
This commit is contained in:
parent
ba68caf6a8
commit
8187a28afc
@ -61,11 +61,13 @@ namespace platf::pen {
|
||||
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,
|
||||
pen.x,
|
||||
pen.y,
|
||||
pen.eventType == LI_TOUCH_EVENT_DOWN ? pen.pressureOrDistance : -1,
|
||||
pen.eventType == LI_TOUCH_EVENT_HOVER ? pen.pressureOrDistance : -1,
|
||||
is_touching ? pen.pressureOrDistance : -1,
|
||||
is_touching ? -1 : pen.pressureOrDistance,
|
||||
tilt_x,
|
||||
tilt_y);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user