http://git.etersoft.ru/projects
/
wine
/
eterwine.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
085ef06
)
Take into account window visibility when searching for a target for a
author
Dmitry Timoshkov
<dmitry@codeweavers.com>
Wed, 27 Oct 2004 21:55:00 +0000
(21:55 +0000)
committer
Alexandre Julliard
<julliard@winehq.org>
Wed, 27 Oct 2004 21:55:00 +0000
(21:55 +0000)
hardware mouse message.
server/queue.c
patch
|
blob
|
blame
|
history
diff --git
a/server/queue.c
b/server/queue.c
index 79460995578245412c9a641aee3cccda67b5dfb8..d71176985b69b6d29dc1452d5fc68e6c85e00f8d 100644
(file)
--- a/
server/queue.c
+++ b/
server/queue.c
@@
-1083,7
+1083,8
@@
static user_handle_t find_hardware_message_window( struct thread_input *input, s
{
if (!input || !(win = input->capture))
{
- if (!(win = msg->win)) win = window_from_point( msg->x, msg->y );
+ if (!(win = msg->win) || !is_window_visible( win ))
+ win = window_from_point( msg->x, msg->y );
}
}
return win;