From 6ccee82368534471f2178540d3fc7c476734a932 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Sat, 18 Apr 2009 01:13:57 +0200 Subject: [PATCH] =?utf8?q?Fix=20for=20the=20fix:=20Don=E2=80=99t=20substra?= =?utf8?q?ct=20height=20twice?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/xcb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xcb.c b/src/xcb.c index b9ba009e..15f977dc 100644 --- a/src/xcb.c +++ b/src/xcb.c @@ -223,7 +223,7 @@ void fake_absolute_configure_notify(xcb_connection_t *conn, Client *client) { absolute.x = client->rect.x; absolute.y = client->rect.y; absolute.width = client->rect.width - (2 * client->child_rect.x); - absolute.height = client->rect.height - (2 * client->child_rect.y); + absolute.height = client->rect.height - client->child_rect.y - 1; fake_configure_notify(conn, absolute, client->child); } -- 2.39.5