diff options
author | nicm <nicm> | 2019-03-13 07:34:36 +0000 |
---|---|---|
committer | nicm <nicm> | 2019-03-13 07:34:36 +0000 |
commit | feaa5660a3151d11bdc9da4b280b293f107061da (patch) | |
tree | 64cefa967bfbbbd8996c0e8d035a96d560647c22 /input.c | |
parent | b2bc34af12e6871faae82d1c46005e278d9cfe1d (diff) | |
download | rtmux-feaa5660a3151d11bdc9da4b280b293f107061da.tar.gz rtmux-feaa5660a3151d11bdc9da4b280b293f107061da.tar.bz2 rtmux-feaa5660a3151d11bdc9da4b280b293f107061da.zip |
Do not use origin for VPA.
Diffstat (limited to 'input.c')
-rw-r--r-- | input.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1471,7 +1471,7 @@ input_csi_dispatch(struct input_ctx *ictx) case INPUT_CSI_HPA: n = input_get(ictx, 0, 1, 1); if (n != -1) - screen_write_cursormove(sctx, n - 1, -1, 1); + screen_write_cursormove(sctx, n - 1, -1, 0); break; case INPUT_CSI_ICH: n = input_get(ictx, 0, 1, 1); @@ -1540,7 +1540,7 @@ input_csi_dispatch(struct input_ctx *ictx) case INPUT_CSI_VPA: n = input_get(ictx, 0, 1, 1); if (n != -1) - screen_write_cursormove(sctx, -1, n - 1, 1); + screen_write_cursormove(sctx, -1, n - 1, 0); break; case INPUT_CSI_DECSCUSR: n = input_get(ictx, 0, 0, 0); |