Parcourir la source

prepared 4.4.1 bugfix and minor feature enhancement release

Anselm R. Garbe il y a 18 ans
Parent
commit
a92cf496c1
5 fichiers modifiés avec 5 ajouts et 5 suppressions
  1. 1 0
      client.c
  2. 1 1
      config.mk
  3. 1 1
      dwm.1
  4. 1 1
      screen.c
  5. 1 2
      tile.c

+ 1 - 0
client.c

@@ -229,6 +229,7 @@ manage(Window w, XWindowAttributes *wa) {
 	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();
 }
 

+ 1 - 1
config.mk

@@ -1,5 +1,5 @@
 # dwm version
-VERSION = 4.4
+VERSION = 4.4.1
 
 # Customize below to fit your system
 

+ 1 - 1
dwm.1

@@ -97,7 +97,7 @@ Close focused window.
 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

+ 1 - 1
screen.c

@@ -284,7 +284,7 @@ togglebar(const char *arg) {
 
 void
 togglefloating(const char *arg) {
-	if(!sel || isfloating())
+	if(!sel)
 		return;
 	sel->isfloating = !sel->isfloating;
 	if(sel->isfloating)

+ 1 - 2
tile.c

@@ -46,7 +46,7 @@ tile(void) {
 
 	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 @@ tile(void) {
 		resize(c, nx, ny, nw, nh, False);
 		if(n > 1 && th != wah)
 			ny += nh + 2 * c->border;
-		i++;
 	}
 }