]> git.sur5r.net Git - i3/i3/commit
rendering: ceil() instead of truncating for tabbed deco_rect width (Thanks szalik)
authorMichael Stapelberg <michael@stapelberg.de>
Wed, 5 Sep 2012 21:54:56 +0000 (23:54 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Wed, 5 Sep 2012 21:54:56 +0000 (23:54 +0200)
commit1e3e6997f4f6046f6c2b2850837b01bf89cb0229
tree15098cd23e49dfee305740b7186645e5468ab4d0
parent34391ae885911d4aff933f6434f71babd65fc474
rendering: ceil() instead of truncating for tabbed deco_rect width (Thanks szalik)

In tabbed mode, the available width (say 1280) is divided by the amount
of child containers (say 3). Before this commit, we just truncated the
result and would end up with 426 + 426 + 426 = 1278 pixels that we
render to. Now we render a bit too much, but that’ll at least not give
us graphics corruption on any side :).

fixes #791
src/render.c