diff options
author | nicm <nicm> | 2017-02-07 18:27:46 +0000 |
---|---|---|
committer | nicm <nicm> | 2017-02-07 18:27:46 +0000 |
commit | c0a34821c14fd8ca7dd77782cb919028826ee4b9 (patch) | |
tree | c2ced559d0214da44e4c55d3323be3b3342c86e7 /tty.c | |
parent | 20f5e377fbe36bfee36f1a22777dafa77ff72ce5 (diff) | |
download | rtmux-c0a34821c14fd8ca7dd77782cb919028826ee4b9.tar.gz rtmux-c0a34821c14fd8ca7dd77782cb919028826ee4b9.tar.bz2 rtmux-c0a34821c14fd8ca7dd77782cb919028826ee4b9.zip |
Do not clear the scroll region, instead set it to the scroll region we
actually want.
Diffstat (limited to 'tty.c')
-rw-r--r-- | tty.c | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1356,13 +1356,15 @@ tty_margin(struct tty *tty, u_int rleft, u_int rright) if (tty->rleft == rleft && tty->rright == rright) return; - tty->rupper = 0; - tty->rlower = tty->sy - 1; + tty_putcode2(tty, TTYC_CSR, tty->rupper, tty->rlower); tty->rleft = rleft; tty->rright = rright; - snprintf(s, sizeof s, "\033[r\033[%u;%us", rleft + 1, rright + 1); + if (rleft == 0 && rright == tty->sx - 1) + snprintf(s, sizeof s, "\033[s"); + else + snprintf(s, sizeof s, "\033[%u;%us", rleft + 1, rright + 1); tty_puts(tty, s); tty->cx = tty->cy = 0; } |