From f5aeaa7710de5ba4aad125bc8472bad1f17e23c6 Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Mon, 13 Jun 2005 00:09:23 +0000 Subject: [PATCH] Bug #3513: Silence unhandled event messages from Xnest when running with -parent. (Mark McLoughlin) --- hw/xnest/Events.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/hw/xnest/Events.c b/hw/xnest/Events.c index a580c4ce2..482c5fda8 100644 --- a/hw/xnest/Events.c +++ b/hw/xnest/Events.c @@ -196,6 +196,14 @@ xnestCollectEvents() X.xdestroywindow.window == xnestParentWindow) exit (0); break; + + case CirculateNotify: + case ConfigureNotify: + case GravityNotify: + case MapNotify: + case ReparentNotify: + case UnmapNotify: + break; default: ErrorF("xnest warning: unhandled event\n");