Commit bb496ea8 authored by Rémi Bernon's avatar Rémi Bernon Committed by Alexandre Julliard

server: Always queue mouse messages delivered to another window.

parent 46df584c
...@@ -1711,6 +1711,7 @@ static void queue_hardware_message( struct desktop *desktop, struct message *msg ...@@ -1711,6 +1711,7 @@ static void queue_hardware_message( struct desktop *desktop, struct message *msg
} }
input = thread->queue->input; input = thread->queue->input;
if (win != msg->win) always_queue = 1;
if (!always_queue || merge_message( input, msg )) free_message( msg ); if (!always_queue || merge_message( input, msg )) free_message( msg );
else else
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment