aboutsummaryrefslogtreecommitdiff
path: root/sway/layout.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/layout.c')
-rw-r--r--sway/layout.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/layout.c b/sway/layout.c
index 2139b78e..1d5944f8 100644
--- a/sway/layout.c
+++ b/sway/layout.c
@@ -576,7 +576,7 @@ void update_geometry(swayc_t *container) {
border_left = 0;
}
- if (geometry.size.w == workspace->width) {
+ if (geometry.origin.x + geometry.size.w == workspace->x + workspace->width) {
border_right = 0;
}
}
@@ -586,7 +586,7 @@ void update_geometry(swayc_t *container) {
border_top = 0;
}
- if (geometry.size.h == workspace->height) {
+ if (geometry.origin.y + geometry.size.h == workspace->y + workspace->height) {
border_bottom = 0;
}
}