mirror of
https://github.com/vim/vim.git
synced 2025-10-07 05:54: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:
@@ -1176,6 +1176,11 @@ win_update(win_T *wp)
|
||||
*/
|
||||
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;
|
||||
return;
|
||||
}
|
||||
|
Reference in New Issue
Block a user