From: Dana Jansens Date: Sat, 12 Jan 2008 04:16:06 +0000 (-0500) Subject: since the internal windows are in window_map now, it's possible we'll get them back... X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=669c7655be8fef885e2f5ea0b0d389046ebb6753;p=chaz%2Fopenbox since the internal windows are in window_map now, it's possible we'll get them back when we check what window an event happened on. so don't abort if that happens anymore. --- diff --git a/openbox/event.c b/openbox/event.c index bc59d67e..04ecf383 100644 --- a/openbox/event.c +++ b/openbox/event.c @@ -475,10 +475,12 @@ static void event_process(const XEvent *ec, gpointer data) client = WINDOW_AS_CLIENT(obwin); break; case Window_Menu: - case Window_Internal: /* not to be used for events */ g_assert_not_reached(); break; + case Window_Internal: + /* we don't do anything with events directly on these windows */ + break; } }