From c74dba8c459b4048b6e4c7b4d2b9baf71f73bf24 Mon Sep 17 00:00:00 2001 From: William McKinnon Date: Tue, 10 Feb 2026 11:17:49 -0500 Subject: [PATCH] oops missed a line --- sway/tree/view.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sway/tree/view.c b/sway/tree/view.c index 754e0c155..79425565e 100644 --- a/sway/tree/view.c +++ b/sway/tree/view.c @@ -375,7 +375,7 @@ void view_autoconfigure(struct sway_view *view) { x = con->pending.x; y = con->pending.y; width = con->pending.width; - height = con->pending.height - y_offset; + height = con->pending.height; break; case B_PIXEL: x = con->pending.x + con->pending.border_thickness * con->pending.border_left;