mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-05-05 11:08:15 +02:00
Ignore screen window map notify events.
This commit is contained in:
parent
55ac57fab4
commit
f63080435d
1 changed files with 6 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue