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

fix regression in hide_edge_borders
This commit is contained in:
Drew DeVault 2016-07-21 22:23:14 -04:00 committed by GitHub
commit 789870e60e

View file

@ -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;
}
}