From 5e9acbc952ef6c323e456fbef82fa5b1c5a9cde2 Mon Sep 17 00:00:00 2001 From: "Anselm R.Garbe" Date: Thu, 17 Aug 2006 10:06:36 +0200 Subject: [PATCH] fixed a bug reported by sander --- client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.c b/client.c index 73f21ed..b158f01 100644 --- a/client.c +++ b/client.c @@ -296,7 +296,7 @@ resize(Client *c, Bool sizehints, Corner sticky) if(c->x > sw) /* might happen on restart */ c->x = sw - c->w; if(c->y > sh) - c->y = bottom - c->h; + c->y = sh - c->h; if(sticky == TopRight || sticky == BotRight) c->x = right - c->w; if(sticky == BotLeft || sticky == BotRight) -- 1.7.10.4