Просмотр исходного кода

hide clients to the left, not the right

Connor Lane Smith 14 лет назад
Родитель
Сommit
2b625eb73e
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      dwm.c

+ 1 - 1
dwm.c

@@ -1597,7 +1597,7 @@ showhide(Client *c) {
 	}
 	else { /* hide clients bottom up */
 		showhide(c->snext);
-		XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
+		XMoveWindow(dpy, c->win, c->w * -2, c->y);
 	}
 }