From: Michael Stapelberg Date: Sun, 23 Aug 2009 18:30:17 +0000 (+0200) Subject: Don’t round up if the corrected height/width is the same as the old one X-Git-Tag: 3.d~122 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=8c4e2e48f4d150135ae1496b87aa9b5f9dd79e4b;p=i3%2Fi3 Don’t round up if the corrected height/width is the same as the old one --- diff --git a/src/layout.c b/src/layout.c index 98429dc3..acb20128 100644 --- a/src/layout.c +++ b/src/layout.c @@ -298,14 +298,21 @@ void resize_client(xcb_connection_t *conn, Client *client) { if (client->height_increment > 1) { int old_height = rect->height; - rect->height = ((int)(rect->height / client->height_increment) * client->height_increment) + 1; + rect->height = ((int)(rect->height / client->height_increment) * client->height_increment); + /* We round up if the height was changed */ + if (rect->height != old_height) + rect->height++; LOG("Lost %d pixel due to client's height_increment (%d px)\n", old_height - rect->height, client->height_increment); } if (client->width_increment > 1) { int old_width = rect->width; - rect->width = ((int)(rect->width / client->width_increment) * client->width_increment) + 1; + rect->width = ((int)(rect->width / client->width_increment) * client->width_increment); + /* We round up if the height was changed */ + if (rect->width != old_width) + rect->width++; + LOG("Lost %d pixel due to client's width_increment (%d px)\n", old_width - rect->width, client->width_increment); }