summaryrefslogtreecommitdiffstats
path: root/sway/layout.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/layout.c')
-rw-r--r--sway/layout.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/layout.c b/sway/layout.c
index db9787f3..ba9a8864 100644
--- a/sway/layout.c
+++ b/sway/layout.c
@@ -587,7 +587,7 @@ void update_geometry(swayc_t *container) {
587 } 587 }
588 588
589 if (config->hide_edge_borders == E_VERTICAL || config->hide_edge_borders == E_BOTH) { 589 if (config->hide_edge_borders == E_VERTICAL || config->hide_edge_borders == E_BOTH) {
590 if (geometry.origin.y == workspace->y) { 590 if (geometry.origin.y == workspace->y || should_hide_top_border(container, geometry.origin.y)) {
591 border_top = 0; 591 border_top = 0;
592 } 592 }
593 593