From: Michael Stapelberg Date: Sun, 7 Apr 2013 07:58:34 +0000 (+0200) Subject: tabbed: floor(), put extra pixels into the last tab (Thanks xeen) X-Git-Tag: 4.6~55^2^2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=9f353996feb8ebab74ca747d319dd3c6746afca7;p=i3%2Fi3 tabbed: floor(), put extra pixels into the last tab (Thanks xeen) This is the only sane way I can think of to deal with the problem that the screen size may not be dividable by the amount of tabbed children (e.g. 1280 / 41 = 31.219512…). fixes #645 fixes #791 --- diff --git a/src/render.c b/src/render.c index 16bfc55b..6061838a 100644 --- a/src/render.c +++ b/src/render.c @@ -372,10 +372,16 @@ void render_con(Con *con, bool render_fullscreen) { child->rect.width = rect.width; child->rect.height = rect.height; - child->deco_rect.width = ceil((float)child->rect.width / children); + child->deco_rect.width = floor((float)child->rect.width / children); child->deco_rect.x = x - con->rect.x + i * child->deco_rect.width; child->deco_rect.y = y - con->rect.y; + /* Since the tab width may be something like 31,6 px per tab, we + * let the last tab have all the extra space (0,6 * children). */ + if (i == (children-1)) { + child->deco_rect.width += (child->rect.width - (child->deco_rect.x + child->deco_rect.width)); + } + if (children > 1 || (child->border_style != BS_PIXEL && child->border_style != BS_NONE)) { child->rect.y += deco_height; child->rect.height -= deco_height;