From 8e966688a769b1c3249074567cadb6c4d36170cd Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sun, 17 May 2026 15:49:21 +0100 Subject: [PATCH] If outside floating pane, do not carry on to check as if tiled pane. --- screen-redraw.c | 1 + 1 file changed, 1 insertion(+) diff --git a/screen-redraw.c b/screen-redraw.c index 3b2c5467..7290e7c9 100644 --- a/screen-redraw.c +++ b/screen-redraw.c @@ -167,6 +167,7 @@ screen_redraw_pane_border(struct screen_redraw_ctx *ctx, struct window_pane *wp, if ((int)py == wp->yoff + (int)wp->sy) return (SCREEN_REDRAW_BORDER_BOTTOM); } + return (SCREEN_REDRAW_OUTSIDE); } /* Get pane indicator. */