mirror of
https://github.com/vale981/bspwm
synced 2025-03-05 09:51:38 -05:00
Don't block window activation when desktop differ
This commit is contained in:
parent
fbcd7c5d65
commit
962403f325
1 changed files with 1 additions and 1 deletions
2
events.c
2
events.c
|
@ -271,7 +271,7 @@ void client_message(xcb_generic_event_t *evt)
|
|||
handle_state(loc.node, e->data.data32[1], e->data.data32[0]);
|
||||
handle_state(loc.node, e->data.data32[2], e->data.data32[0]);
|
||||
} else if (e->type == ewmh->_NET_ACTIVE_WINDOW) {
|
||||
if (desk->focus != NULL && desk->focus->client->fullscreen)
|
||||
if (loc.desktop == desk && desk->focus != NULL && desk->focus->client->fullscreen)
|
||||
return;
|
||||
apply_layout(loc.desktop, loc.desktop->root, root_rect);
|
||||
if (desk != loc.desktop)
|
||||
|
|
Loading…
Add table
Reference in a new issue