diff options
author | Thomas Adam <thomas@xteddy.org> | 2017-11-03 00:01:20 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2017-11-03 00:01:20 +0000 |
commit | e1606172dde26ed8a589d6c49196ea5fda7e3186 (patch) | |
tree | 7d7e091ebcc28fc7af6e079d2bca12e2fe715399 /screen-write.c | |
parent | c9ec33d0d018daacce90faf96156bf69098c210b (diff) | |
parent | 43264dfbf410489b36343a29cc83798a54df67f8 (diff) | |
download | rtmux-e1606172dde26ed8a589d6c49196ea5fda7e3186.tar.gz rtmux-e1606172dde26ed8a589d6c49196ea5fda7e3186.tar.bz2 rtmux-e1606172dde26ed8a589d6c49196ea5fda7e3186.zip |
Merge branch 'obsd-master'
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 37a51fcb..44c28982 100644 --- a/screen-write.c +++ b/screen-write.c @@ -457,7 +457,7 @@ screen_write_vline(struct screen_write_ctx *ctx, u_int ny, int top, int bottom) screen_write_cursormove(ctx, cx, cy + i); screen_write_putc(ctx, &gc, 'x'); } - screen_write_cursormove(ctx, cx, cy + ny); + screen_write_cursormove(ctx, cx, cy + ny - 1); screen_write_putc(ctx, &gc, bottom ? 'v' : 'x'); screen_write_cursormove(ctx, cx, cy); |