opt: allow switch focus between fullscreen and floating window in focusstack

This commit is contained in:
DreamMaoMao 2025-10-27 12:46:04 +08:00
parent 9b5f05e718
commit 31f376f998
4 changed files with 13 additions and 2 deletions

View file

@ -213,7 +213,7 @@ int focusstack(const Arg *arg) {
Client *sel = focustop(selmon);
Client *tc = NULL;
if (!sel || (sel->isfullscreen && !client_has_children(sel)))
if (!sel)
return 0;
if (arg->i == NEXT) {
tc = get_next_stack_client(sel, false);