Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
900ba826
Commit
900ba826
authored
May 31, 2023
by
Rémi Bernon
Committed by
Alexandre Julliard
May 31, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
win32u: Use WM_WINE_CLIPCURSOR / TRUE for empty clipping rect.
parent
3bce247b
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
message.c
dlls/win32u/message.c
+1
-1
queue.c
server/queue.c
+1
-1
No files found.
dlls/win32u/message.c
View file @
900ba826
...
...
@@ -1272,7 +1272,7 @@ static LRESULT handle_internal_message( HWND hwnd, UINT msg, WPARAM wparam, LPAR
return
call_current_hook
(
h_extra
->
handle
,
HC_ACTION
,
wparam
,
h_extra
->
lparam
);
}
case
WM_WINE_CLIPCURSOR
:
return
process_wine_clipcursor
(
!
wparam
);
return
process_wine_clipcursor
(
wparam
);
case
WM_WINE_UPDATEWINDOWSTATE
:
update_window_state
(
hwnd
);
return
0
;
...
...
server/queue.c
View file @
900ba826
...
...
@@ -468,7 +468,7 @@ static void set_clip_rectangle( struct desktop *desktop, const rectangle_t *rect
}
else
desktop
->
cursor
.
clip
=
top_rect
;
if
(
send_clip_msg
)
post_desktop_message
(
desktop
,
WM_WINE_CLIPCURSOR
,
rect
!
=
NULL
,
0
);
if
(
send_clip_msg
)
post_desktop_message
(
desktop
,
WM_WINE_CLIPCURSOR
,
rect
=
=
NULL
,
0
);
/* warp the mouse to be inside the clip rect */
x
=
max
(
min
(
desktop
->
cursor
.
x
,
desktop
->
cursor
.
clip
.
right
-
1
),
desktop
->
cursor
.
clip
.
left
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment