dwm-alwaysfullscreen-20160713-56a31dc.diff - sites - public wiki contents of su… | |
git clone git://git.suckless.org/sites | |
Log | |
Files | |
Refs | |
--- | |
dwm-alwaysfullscreen-20160713-56a31dc.diff (322B) | |
--- | |
1 diff --git a/dwm.c b/dwm.c | |
2 index b2bc9bd..aa1b407 100644 | |
3 --- a/dwm.c | |
4 +++ b/dwm.c | |
5 @@ -849,7 +849,7 @@ focusstack(const Arg *arg) | |
6 { | |
7 Client *c = NULL, *i; | |
8 | |
9 - if (!selmon->sel) | |
10 + if (!selmon->sel || selmon->sel->isfullscreen) | |
11 return; | |
12 if (arg->i > 0) { | |
13 for (c = selmon->sel->next; c && !ISVISIBLE(c); c = c->… |