fakefullscreen: fullscreen --> fake fullscreen can make the tiled window display on top of floating window

This commit is contained in:
bakkeby
2020-09-12 13:33:02 +02:00
parent c3e5910080
commit 7b477bc7db
2 changed files with 8 additions and 9 deletions

View File

@ -13,12 +13,9 @@ togglefullscreen(const Arg *arg)
} else if (c->fakefullscreen == 2) {
c->fakefullscreen = 0;
togglefakefullscreen(NULL);
arrange(selmon);
return;
}
#endif // FAKEFULLSCREEN_CLIENT_PATCH
setfullscreen(c, !c->isfullscreen);
if (!c->isfullscreen)
arrange(c->mon);
}