all repos — openbox @ 669c7655be8fef885e2f5ea0b0d389046ebb6753

openbox fork - make it a bit more like ryudo

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.
Dana Jansens danakj@orodu.net
commit

669c7655be8fef885e2f5ea0b0d389046ebb6753

parent

fe11937661b891d7d7f2f4224eb956623fe518fb

1 files changed, 3 insertions(+), 1 deletions(-)

jump to
M openbox/event.copenbox/event.c

@@ -475,9 +475,11 @@ case Window_Client:

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; } }