mirror of
https://github.com/vim/vim.git
synced 2025-09-30 04:44:14 -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:
@@ -1176,6 +1176,11 @@ win_update(win_T *wp)
|
|||||||
*/
|
*/
|
||||||
if (term_update_window(wp) == OK)
|
if (term_update_window(wp) == OK)
|
||||||
{
|
{
|
||||||
|
# ifdef FEAT_MENU
|
||||||
|
/* Draw the window toolbar, if there is one. */
|
||||||
|
if (winbar_height(wp) > 0)
|
||||||
|
redraw_win_toolbar(wp);
|
||||||
|
# endif
|
||||||
wp->w_redr_type = 0;
|
wp->w_redr_type = 0;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@@ -2398,8 +2398,8 @@ term_update_window(win_T *wp)
|
|||||||
else
|
else
|
||||||
pos.col = 0;
|
pos.col = 0;
|
||||||
|
|
||||||
screen_line(wp->w_winrow + pos.row, wp->w_wincol,
|
screen_line(wp->w_winrow + pos.row + winbar_height(wp),
|
||||||
pos.col, wp->w_width, FALSE);
|
wp->w_wincol, pos.col, wp->w_width, FALSE);
|
||||||
}
|
}
|
||||||
term->tl_dirty_row_start = MAX_ROW;
|
term->tl_dirty_row_start = MAX_ROW;
|
||||||
term->tl_dirty_row_end = 0;
|
term->tl_dirty_row_end = 0;
|
||||||
|
@@ -771,6 +771,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1520,
|
||||||
/**/
|
/**/
|
||||||
1519,
|
1519,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user