mirror of
https://github.com/zoriya/dwm.git
synced 2025-12-05 23:06:19 +00:00
Fixing fullsreen tag swap
This commit is contained in:
2
dwm.c
2
dwm.c
@@ -3282,7 +3282,7 @@ view(const Arg *arg)
|
||||
if (arg->ui & TAGMASK)
|
||||
selmon->tagset[selmon->seltags] = arg->ui & TAGMASK;
|
||||
for (Client *c = selmon->cl->clients; c; c = c->next) {
|
||||
if (!c->isfullscreen)
|
||||
if (!(c->isfullscreen && c->tags & newtagset))
|
||||
continue;
|
||||
c->isfullscreen = 0;
|
||||
fs = fs ? NULL : c; // if two clients are fullscreen on the new view, disable fullscreen for every clients.
|
||||
|
||||
Reference in New Issue
Block a user