From: Ian Jackson Date: Fri, 31 Dec 2010 15:56:07 +0000 (+0000) Subject: gui-plan: ignore MappingNotify X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ijackson/git?a=commitdiff_plain;h=5b812a9deb6cd04d7f33e3c91c95a8f40dd36aac;p=trains.git gui-plan: ignore MappingNotify --- diff --git a/hostside/gui-plan.c b/hostside/gui-plan.c index 33e601f..ca83af0 100644 --- a/hostside/gui-plan.c +++ b/hostside/gui-plan.c @@ -331,6 +331,7 @@ static void xlib_process(void) { switch (ev.type) { case Expose: xlib_expose(&ev.xexpose); break; case NoExpose: break; + case MappingNotify: break; case GraphicsExpose: die_graphicsexpose(&ev); default: die("unrequested event type %d\n",ev.type); }