Commit 43d465f8 authored by Alexandre Julliard's avatar Alexandre Julliard

server: Ignore color-keyed windows when updating the z-order.

parent 07f29c2c
......@@ -2471,6 +2471,7 @@ DECL_HANDLER(update_window_zorder)
if (ptr == win) break;
if (!(ptr->style & WS_VISIBLE)) continue;
if (ptr->ex_style & WS_EX_TRANSPARENT) continue;
if (ptr->is_layered && (ptr->layered_flags & LWA_COLORKEY)) continue;
if (!intersect_rect( &tmp, &ptr->visible_rect, &rect )) continue;
if (ptr->win_region)
{
......
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