fixed issue pointed out by Jukka
arg@mmvi unknown
Fri, 22 Sep 2006 11:49:24 +0200
M
dwm.1
→
dwm.1
@@ -60,7 +60,7 @@ .B Mod1-Shift-Tab
Focus previous window. .TP .B Mod1-Return -Zooms/cycles current window to/from master column (tiling mode), toggles maximization (floating mode). +Zooms/cycles current window to/from master column (tiling mode), maximizes current window (floating mode). .TP .B Mod1-g Grow current column (tiling mode only).
M
view.c
→
view.c
@@ -278,10 +278,10 @@ if(!sel)
return; if(sel->isfloat || (arrange == dofloat)) { - tmp = sel->x; sel->x = sel->rx; sel->rx = tmp; - tmp = sel->y; sel->y = sel->ry; sel->ry = tmp; - tmp = sel->w; sel->w = sel->rw; sel->rw = tmp; - tmp = sel->h; sel->h = sel->rh; sel->rh = tmp; + sel->x = sx; + sel->y = bh; + sel->w = sw; + sel->h = sh - bh; resize(sel, True, TopLeft); while(XCheckMaskEvent(dpy, EnterWindowMask, &ev)); return;