diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-05-02 16:17:44 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-05-02 16:17:44 +0100 |
commit | af69289e0ea2b4af80206bcde0574358fa1b9169 (patch) | |
tree | 6a66f17f4912c48f0160ceb5b84aa936fe2eb391 /tmux.h | |
parent | cb1131a29481246c9cb9b68cb8591cc747fcdd9a (diff) | |
download | rtmux-af69289e0ea2b4af80206bcde0574358fa1b9169.tar.gz rtmux-af69289e0ea2b4af80206bcde0574358fa1b9169.tar.bz2 rtmux-af69289e0ea2b4af80206bcde0574358fa1b9169.zip |
Clamping to area needs to use the offset without the status line, since that is
where the window offsets are based.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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; |