comparison src/screen.c @ 13292:c42fe898b578 v8.0.1520

patch 8.0.1520: cursor in wrong line when using a WinBar in Terminal window commit https://github.com/vim/vim/commit/181ca99e163b145cd1a4ec47a50cc25cf3994109 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Feb 13 21:19:21 2018 +0100 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)
author Christian Brabandt <cb@256bit.org>
date Tue, 13 Feb 2018 21:30:06 +0100
parents ac42c4b11dbc
children ae312df8d0ab
comparison
equal deleted inserted replaced
13291:a9ee06deb937 13292:c42fe898b578
1174 #ifdef FEAT_TERMINAL 1174 #ifdef FEAT_TERMINAL
1175 /* If this window contains a terminal, redraw works completely differently. 1175 /* If this window contains a terminal, redraw works completely differently.
1176 */ 1176 */
1177 if (term_update_window(wp) == OK) 1177 if (term_update_window(wp) == OK)
1178 { 1178 {
1179 # ifdef FEAT_MENU
1180 /* Draw the window toolbar, if there is one. */
1181 if (winbar_height(wp) > 0)
1182 redraw_win_toolbar(wp);
1183 # endif
1179 wp->w_redr_type = 0; 1184 wp->w_redr_type = 0;
1180 return; 1185 return;
1181 } 1186 }
1182 #endif 1187 #endif
1183 1188