X-Git-Url: http://git.armaanb.net/?a=blobdiff_plain;f=dwm.c;h=b0b3466881b84872a6b261cc1ed42afed08ac3bd;hb=67d76bdc68102df976177de351f65329d8683064;hp=664c527f21f852967ba41739fda440429277df84;hpb=61bb8b2241d4db08bea4261c82e27cd9797099e7;p=dwm.git diff --git a/dwm.c b/dwm.c index 664c527..b0b3466 100644 --- a/dwm.c +++ b/dwm.c @@ -835,7 +835,7 @@ focusstack(const Arg *arg) { Client *c = NULL, *i; - if (!selmon->sel) + if (!selmon->sel || selmon->sel->isfullscreen) return; if (arg->i > 0) { for (c = selmon->sel->next; c && !ISVISIBLE(c); c = c->next);