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.
This commit is contained in:
parent
fe11937661
commit
669c7655be
1 changed files with 3 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue