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 04e3bd6861
commit 918a00d578
4 changed files with 13 additions and 2 deletions

View File

@@ -212,7 +212,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);