From af69289e0ea2b4af80206bcde0574358fa1b9169 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sat, 2 May 2020 16:17:44 +0100 Subject: Clamping to area needs to use the offset without the status line, since that is where the window offsets are based. --- tmux.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 15a8506f..a1f6d924 100644 --- a/tmux.h +++ b/tmux.h @@ -1321,6 +1321,8 @@ struct tty_ctx { /* Target region (usually pane) offset and size. */ u_int xoff; u_int yoff; + u_int rxoff; + u_int ryoff; u_int sx; u_int sy; -- cgit