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
5474aa94
Commit
5474aa94
authored
Apr 09, 2002
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Apr 09, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed problem with mouse cursors in Word.
parent
aba60df4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
defwnd.c
windows/defwnd.c
+2
-1
nonclient.c
windows/nonclient.c
+1
-2
No files found.
windows/defwnd.c
View file @
5474aa94
...
...
@@ -527,7 +527,8 @@ static LRESULT DEFWND_DefWinProc( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lPa
if
(
SendMessageW
(
GetParent
(
hwnd
),
WM_SETCURSOR
,
wParam
,
lParam
))
return
TRUE
;
}
}
return
NC_HandleSetCursor
(
hwnd
,
wParam
,
lParam
);
NC_HandleSetCursor
(
hwnd
,
wParam
,
lParam
);
break
;
case
WM_SYSCOMMAND
:
return
NC_HandleSysCommand
(
hwnd
,
wParam
,
lParam
);
...
...
windows/nonclient.c
View file @
5474aa94
...
...
@@ -1692,8 +1692,7 @@ LONG NC_HandleNCActivate( HWND hwnd, WPARAM wParam )
*/
LONG
NC_HandleSetCursor
(
HWND
hwnd
,
WPARAM
wParam
,
LPARAM
lParam
)
{
if
(
hwnd
!=
WIN_GetFullHandle
(
(
HWND
)
wParam
))
return
0
;
/* Don't set the cursor for child windows */
hwnd
=
WIN_GetFullHandle
(
(
HWND
)
wParam
);
switch
(
LOWORD
(
lParam
))
{
...
...
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