diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-05-08 22:09:31 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-05-08 22:09:31 +0100 |
commit | 5e97d79eb1337db2dd5969fb2c339d14427f545b (patch) | |
tree | 3758f15db414e1bb6e7cb417ad956b937cab60f8 /screen-write.c | |
parent | a61cbf1c33d8d61b564f95053cbf96443126dd87 (diff) | |
download | rtmux-5e97d79eb1337db2dd5969fb2c339d14427f545b.tar.gz rtmux-5e97d79eb1337db2dd5969fb2c339d14427f545b.tar.bz2 rtmux-5e97d79eb1337db2dd5969fb2c339d14427f545b.zip |
Fix some customize mode drawing nits.
Diffstat (limited to 'screen-write.c')
-rw-r--r-- | screen-write.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/screen-write.c b/screen-write.c index adb53307..b168d0b6 100644 --- a/screen-write.c +++ b/screen-write.c @@ -428,7 +428,7 @@ screen_write_text(struct screen_write_ctx *ctx, u_int width, u_int lines, idx = next; } - screen_write_cursormove(ctx, cx, s->cy + 1, 0); + screen_write_cursormove(ctx, cx, s->cy, 0); free(text); } |