Bugfix: Fix crash on new clients (Thanks Mirko)
This commit is contained in:
parent
e4088d5992
commit
c3c05db579
|
@ -300,9 +300,11 @@ void set_focus(xcb_connection_t *conn, Client *client, bool set_anyways) {
|
||||||
* we might have just gone into stacking mode and need to raise */
|
* we might have just gone into stacking mode and need to raise */
|
||||||
Client *last_focused = get_last_focused_client(conn, client->container, client);
|
Client *last_focused = get_last_focused_client(conn, client->container, client);
|
||||||
|
|
||||||
LOG("raising above frame %p / child %p\n", last_focused->frame, last_focused->child);
|
if (last_focused != NULL) {
|
||||||
uint32_t values[] = { last_focused->frame, XCB_STACK_MODE_ABOVE };
|
LOG("raising above frame %p / child %p\n", last_focused->frame, last_focused->child);
|
||||||
xcb_configure_window(conn, client->frame, XCB_CONFIG_WINDOW_SIBLING | XCB_CONFIG_WINDOW_STACK_MODE, values);
|
uint32_t values[] = { last_focused->frame, XCB_STACK_MODE_ABOVE };
|
||||||
|
xcb_configure_window(conn, client->frame, XCB_CONFIG_WINDOW_SIBLING | XCB_CONFIG_WINDOW_STACK_MODE, values);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* If it is the same one as old_client, we save us the unnecessary redecorate */
|
/* If it is the same one as old_client, we save us the unnecessary redecorate */
|
||||||
|
|
Loading…
Reference in New Issue