mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-15 00:44:19 +09:00
[client,common] fix mask for freerdp_client_handle_touch
This commit is contained in:
@@ -2086,7 +2086,8 @@ static BOOL freerdp_client_touch_update(rdpClientContext* cctx, UINT32 flags, IN
|
|||||||
BOOL freerdp_client_handle_touch(rdpClientContext* cctx, UINT32 flags, INT32 finger,
|
BOOL freerdp_client_handle_touch(rdpClientContext* cctx, UINT32 flags, INT32 finger,
|
||||||
UINT32 pressure, INT32 x, INT32 y)
|
UINT32 pressure, INT32 x, INT32 y)
|
||||||
{
|
{
|
||||||
const UINT32 mask = FREERDP_TOUCH_DOWN | FREERDP_TOUCH_UP | FREERDP_TOUCH_MOTION;
|
const UINT32 mask =
|
||||||
|
FREERDP_TOUCH_DOWN | FREERDP_TOUCH_UP | FREERDP_TOUCH_MOTION | FREERDP_TOUCH_CANCEL;
|
||||||
WINPR_ASSERT(cctx);
|
WINPR_ASSERT(cctx);
|
||||||
|
|
||||||
FreeRDP_TouchContact contact = { 0 };
|
FreeRDP_TouchContact contact = { 0 };
|
||||||
|
|||||||
Reference in New Issue
Block a user