applied the proposed monocle patch from the mailinglist 940240e5
Anselm R Garbe · 2008-04-05 18:23 1 file(s) · +1 −1
dwm.c +1 −1
1068 1068
	Client *c;
1069 1069
1070 1070
	for(c = clients; c; c = c->next)
1071 -
		if(isvisible(c))
1071 +
		if((lt->isfloating || !c->floating) &&  isvisible(c))
1072 1072
			resize(c, mox, moy, mow - 2 * c->bw, moh - 2 * c->bw, RESIZEHINTS);
1073 1073
}
1074 1074