aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sway/handlers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/handlers.c b/sway/handlers.c
index 33e75d6b..92bb319d 100644
--- a/sway/handlers.c
+++ b/sway/handlers.c
@@ -931,7 +931,7 @@ static bool swayc_border_check(swayc_t *c, const void *_origin) {
const struct wlc_point *origin = _origin;
const struct wlc_geometry title_bar = c->title_bar_geometry;
- if (c->border_type != B_NORMAL) {
+ if (c->border_type != B_NORMAL || !c->visible) {
return false;
}