all repos — dwm @ a92cf496c18189f9cbc7c1d7f8edcebbd1d7ff99

my dwm build

prepared 4.4.1 bugfix and minor feature enhancement release
Anselm R. Garbe garbeam@gmail.com
Sun, 26 Aug 2007 12:53:40 +0200
commit

a92cf496c18189f9cbc7c1d7f8edcebbd1d7ff99

parent

cc7970010bd78e700d790b12617a50c9f9fd45a8

5 files changed, 5 insertions(+), 5 deletions(-)

jump to
M client.cclient.c

@@ -229,6 +229,7 @@ attachstack(c);

XMoveResizeWindow(dpy, c->win, c->x, c->y, c->w, c->h); /* some windows require this */ ban(c); XMapWindow(dpy, c->win); + setclientstate(c, NormalState); arrange(); }
M config.mkconfig.mk

@@ -1,5 +1,5 @@

# dwm version -VERSION = 4.4 +VERSION = 4.4.1 # Customize below to fit your system
M dwm.1dwm.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 screen.cscreen.c

@@ -284,7 +284,7 @@ }

void togglefloating(const char *arg) { - if(!sel || isfloating()) + if(!sel) return; sel->isfloating = !sel->isfloating; if(sel->isfloating)
M tile.ctile.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++; } }