server: Ignore color-keyed windows when updating the z-order.
This commit is contained in:
parent
07f29c2ce7
commit
43d465f86a
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue