Ignore screen window map notify events.

This commit is contained in:
David Reveman 2008-09-04 00:33:30 +02:00
parent 55ac57fab4
commit f63080435d

View file

@ -336,6 +336,12 @@ dmxScreenEventCheckOutputWindow (ScreenPtr pScreen,
the block handler */
dmxScreen->scrnWin = None;
} break;
case XCB_MAP_NOTIFY: {
xcb_map_notify_event_t *xmap = (xcb_map_notify_event_t *) event;
if (xmap->window == dmxScreen->scrnWin)
return TRUE;
} break;
default:
return FALSE;
}