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

This commit is contained in:
Alexandre Julliard 2012-09-11 18:12:16 +02:00
parent 07f29c2ce7
commit 43d465f86a

View file

@ -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)
{