mirror of
https://github.com/vale981/spectrwm
synced 2025-03-05 09:51:38 -05:00
Ignore UnmapNotify if from an unmanaged child of a managed window.
This commit is contained in:
parent
1ddfc76bfe
commit
3e78a0cd60
1 changed files with 1 additions and 1 deletions
|
@ -8182,7 +8182,7 @@ unmapnotify(xcb_unmap_notify_event_t *e)
|
|||
|
||||
/* If we aren't managing the window, then ignore. */
|
||||
win = find_window(e->window);
|
||||
if (win == NULL)
|
||||
if (win == NULL || win->id != e->window)
|
||||
return;
|
||||
|
||||
ws = win->ws;
|
||||
|
|
Loading…
Add table
Reference in a new issue