Browse Source

fixed issue pointed out by Jukka

arg@mmvi 19 năm trước cách đây
mục cha
commit
05c10c5776
4 tập tin đã thay đổi với 5 bổ sung10 xóa
  1. 0 4
      client.c
  2. 1 1
      dwm.1
  3. 0 1
      dwm.h
  4. 4 4
      view.c

+ 0 - 4
client.c

@@ -206,10 +206,6 @@ manage(Window w, XWindowAttributes *wa) {
 	c->w = c->tw = wa->width;
 	c->h = wa->height;
 	c->th = bh;
-	c->rx = sx;
-	c->ry = bh;
-	c->rw = sw;
-	c->rh = sh - bh;
 
 	c->border = 0;
 	updatesize(c);

+ 1 - 1
dwm.1

@@ -60,7 +60,7 @@ Focus next window.
 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).

+ 0 - 1
dwm.h

@@ -78,7 +78,6 @@ struct Client {
 	int proto;
 	int x, y, w, h;
 	int tx, ty, tw, th; /* title window geometry */
-	int rx, ry, rw, rh; /* revert geometry */
 	int basew, baseh, incw, inch, maxw, maxh, minw, minh;
 	int grav;
 	long flags; 

+ 4 - 4
view.c

@@ -278,10 +278,10 @@ zoom(Arg *arg) {
 		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;