call the window's processEvent() directly instead of the screen's, since it didn't actually do anything with the event.

This commit is contained in:
Dana Jansens 2002-09-07 07:28:36 +00:00
parent 01a6d810b6
commit 5e9f6a165c

View file

@ -149,7 +149,9 @@ void screen::processEvent(const XEvent &e) {
DestroyNotify, &ev) ||
XCheckTypedWindowEvent(_epist->getXDisplay(), e.xany.window,
UnmapNotify, &ev)) {
processEvent(ev);
XWindow *win = _epist->findWindow(e.xany.window);
if (win) win->processEvent(ev);
}
updateClientList();