0
0
mirror of https://github.com/vim/vim.git synced 2025-09-29 04:34:16 -04:00

patch 8.0.1520: cursor in wrong line when using a WinBar in Terminal window

Problem:    Cursor is in the wrong line when using a WinBar in a Terminal
            window.
Solution:   Adjust the row number. (Christian Brabandt, closes #2362)
This commit is contained in:
Bram Moolenaar
2018-02-13 21:19:21 +01:00
parent 341a64c9ca
commit 181ca99e16
3 changed files with 9 additions and 2 deletions

View File

@@ -2398,8 +2398,8 @@ term_update_window(win_T *wp)
else
pos.col = 0;
screen_line(wp->w_winrow + pos.row, wp->w_wincol,
pos.col, wp->w_width, FALSE);
screen_line(wp->w_winrow + pos.row + winbar_height(wp),
wp->w_wincol, pos.col, wp->w_width, FALSE);
}
term->tl_dirty_row_start = MAX_ROW;
term->tl_dirty_row_end = 0;