Revert "Add a configuration option for fullscreen locking"

now all fullcreen clients are rendered above tiled and floating clients

This partially reverts commit 326eee1444.
This commit is contained in:
Leonardo Hernández Hernández
2022-11-21 14:44:24 -06:00
parent caec566286
commit 087373698a
2 changed files with 1 additions and 2 deletions

2
dwl.c
View File

@@ -1156,7 +1156,7 @@ focusstack(const Arg *arg)
{
/* Focus the next or previous client (in tiling order) on selmon */
Client *c, *sel = selclient();
if (!sel || (sel->isfullscreen && lockfullscreen))
if (!sel || sel->isfullscreen)
return;
if (arg->i > 0) {
wl_list_for_each(c, &sel->link, link) {