prepared 4.4.1 bugfix and minor feature enhancement release
Anselm R. Garbe garbeam@gmail.com
Sun, 26 Aug 2007 12:53:40 +0200
M
dwm.1
→
dwm.1
@@ -97,7 +97,7 @@ .B Mod1\-space
Toggle between tiled and floating layout (affects all windows). .TP .B Mod1\-Shift\-space -Toggle focused window between tiled and floating state (tiled layout only). +Toggle focused window between tiled and floating state. .TP .B Mod1\-[1..n] View all windows with
M
tile.c
→
tile.c
@@ -46,7 +46,7 @@ th = wah;
nx = wax; ny = way; - for(i = 0, c = nexttiled(clients); c; c = nexttiled(c->next)) { + for(i = 0, c = nexttiled(clients); c; c = nexttiled(c->next), i++) { c->ismax = False; if(i == 0) { /* master */ nw = mw - 2 * c->border;@@ -66,7 +66,6 @@ }
resize(c, nx, ny, nw, nh, False); if(n > 1 && th != wah) ny += nh + 2 * c->border; - i++; } }