30 Nov
2025
30 Nov
'25
2:59 p.m.
From: Hecheng Yu <kde-yyds(a)qq.com> --- dlls/win32u/pointer.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dlls/win32u/pointer.c b/dlls/win32u/pointer.c index 4d5a0109696..843b05def09 100644 --- a/dlls/win32u/pointer.c +++ b/dlls/win32u/pointer.c @@ -222,6 +222,13 @@ BOOL get_pointer_touch_info( UINT32 id, POINTER_TOUCH_INFO *info ) /* Get pointer type */ BOOL get_pointer_type( UINT32 id, POINTER_INPUT_TYPE *type ) { + if (id == 1) + { + *type = PT_MOUSE; + TRACE( "Pointer 1 is mouse\n" ); + return TRUE; + } + struct pointer_info_entry *entry; BOOL ret = FALSE; -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/9628