sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 789870e60e7c94a84203ee70de325ad8b0a4174d
parent 9fe1d3da381296966e01d922ce6e54d0e55e7c00
Author: Drew DeVault <sir@cmpwn.com>
Date:   Thu, 21 Jul 2016 22:23:14 -0400

Merge pull request #780 from zandrmartin/fix-edge-gap

fix regression in hide_edge_borders
Diffstat:
Msway/layout.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sway/layout.c b/sway/layout.c @@ -576,7 +576,7 @@ void update_geometry(swayc_t *container) { border_left = 0; } - if (geometry.origin.x + geometry.size.w == workspace->width) { + if (geometry.size.w == workspace->width) { border_right = 0; } } @@ -586,7 +586,7 @@ void update_geometry(swayc_t *container) { border_top = 0; } - if (geometry.origin.y + geometry.size.h == workspace->height) { + if (geometry.size.h == workspace->height) { border_bottom = 0; } }