| commit | 66e981ec8d31efd13932f37ac7da0ceebb677e6a | [log] [tgz] |
|---|---|---|
| author | Dmitry Timoshkov <dmitry@codeweavers.com> | Fri Jun 11 19:20:41 2010 +0900 |
| committer | Alexandre Julliard <julliard@winehq.org> | Fri Jun 11 14:16:03 2010 +0200 |
| tree | 71fbf5f6f72ca6876a131a832e2197810e5d8af9 | |
| parent | 0d8e7983c14cd0c8f0672dfd16b5a452ded7849e [diff] [blame] |
server: Make layered windows transparent for mouse messages.
diff --git a/server/queue.c b/server/queue.c index 755d3c1..ae11901 100644 --- a/server/queue.c +++ b/server/queue.c
@@ -1252,7 +1252,7 @@ { if (!input || !(win = input->capture)) { - if (!(win = msg->win) || !is_window_visible( win )) + if (!(win = msg->win) || !is_window_visible( win ) || is_window_transparent( win )) { if (input) win = window_from_point( input->desktop, data->x, data->y ); }