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
7a06d45f
Commit
7a06d45f
authored
Apr 17, 2001
by
Gerard Patel
Committed by
Alexandre Julliard
Apr 17, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not send WM_MOUSEACTIVATE for children of desktop.
parent
71c69849
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
5 deletions
+1
-5
listbox.c
controls/listbox.c
+0
-4
message.c
windows/message.c
+1
-1
No files found.
controls/listbox.c
View file @
7a06d45f
...
...
@@ -2952,8 +2952,6 @@ static LRESULT WINAPI ListBoxWndProc_locked( WND* wnd, UINT msg,
return
LISTBOX_HandleHScroll
(
wnd
,
descr
,
wParam
);
case
WM_VSCROLL
:
return
LISTBOX_HandleVScroll
(
wnd
,
descr
,
wParam
);
case
WM_MOUSEACTIVATE
:
return
MA_NOACTIVATE
;
case
WM_MOUSEWHEEL
:
if
(
wParam
&
(
MK_SHIFT
|
MK_CONTROL
))
return
unicode
?
DefWindowProcW
(
hwnd
,
msg
,
wParam
,
lParam
)
:
...
...
@@ -3178,8 +3176,6 @@ static LRESULT WINAPI ComboLBWndProc_locked( WND* wnd, UINT msg,
return
LISTBOX_HandleLButtonDownCombo
(
wnd
,
descr
,
msg
,
wParam
,
(
INT16
)
LOWORD
(
lParam
),
(
INT16
)
HIWORD
(
lParam
)
);
case
WM_MOUSEACTIVATE
:
return
MA_NOACTIVATE
;
case
WM_NCACTIVATE
:
return
FALSE
;
case
WM_KEYDOWN
:
...
...
windows/message.c
View file @
7a06d45f
...
...
@@ -316,7 +316,7 @@ static DWORD MSG_ProcessMouseMsg( MSG *msg, BOOL remove, INT16 hittest,
/* Activate the window if needed */
if
(
hWnd
!=
GetActiveWindow
()
&&
h
Wnd
!=
GetDesktopWindow
())
if
(
hWnd
!=
GetActiveWindow
()
&&
h
wndTop
!=
GetDesktopWindow
())
{
LONG
ret
=
SendMessageA
(
hWnd
,
WM_MOUSEACTIVATE
,
hwndTop
,
MAKELONG
(
hittest
,
message
)
);
...
...
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