take care when sibling is specified as an unmanaged window
This commit is contained in:
parent
73b3838d5e
commit
551528c57f
1 changed files with 4 additions and 1 deletions
|
@ -1073,8 +1073,11 @@ static void event_handle_client(ObClient *client, XEvent *e)
|
||||||
ObWindow *win;
|
ObWindow *win;
|
||||||
win = g_hash_table_lookup(window_map,
|
win = g_hash_table_lookup(window_map,
|
||||||
&e->xconfigurerequest.above);
|
&e->xconfigurerequest.above);
|
||||||
if (WINDOW_IS_CLIENT(win) && WINDOW_AS_CLIENT(win) != client)
|
if (win && WINDOW_IS_CLIENT(win) &&
|
||||||
|
WINDOW_AS_CLIENT(win) != client)
|
||||||
|
{
|
||||||
sibling = WINDOW_AS_CLIENT(win);
|
sibling = WINDOW_AS_CLIENT(win);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!config_focus_under_mouse)
|
if (!config_focus_under_mouse)
|
||||||
|
|
Loading…
Reference in a new issue