Show one cell to the right of the input cursor

weechat-hashes
C. McEnroe 2020-02-07 20:28:22 -05:00
parent 4343f35f9c
commit aed762368d
1 changed files with 1 additions and 1 deletions

2
ui.c
View File

@ -226,7 +226,7 @@ void uiDraw(void) {
getyx(input, y, x);
pnoutrefresh(
input,
0, (x > RIGHT ? x - RIGHT : 0),
0, (x + 1 > RIGHT ? x + 1 - RIGHT : 0),
BOTTOM, 0,
BOTTOM, RIGHT
);