Ver Fonte

applied Sanders patch

Anselm R. Garbe há 18 anos atrás
pai
commit
492c6f10fc
1 ficheiros alterados com 2 adições e 2 exclusões
  1. 2 2
      client.c

+ 2 - 2
client.c

@@ -305,8 +305,8 @@ togglefloating(const char *arg) {
 	if(!sel || lt->arrange == floating)
 		return;
 	sel->isfloating = !sel->isfloating;
-	if(sel->isfloating && sel->isfixed)
-		resize(sel, sel->x, sel->y, sel->minw, sel->minh, True);
+	if(sel->isfloating)
+		resize(sel, sel->x, sel->y, sel->w, sel->h, True);
 	lt->arrange();
 }