1
0
forked from aniani/vim

patch 7.4.2004

Problem:    GUI: cursor displayed in the wrong position.
Solution:   Correct screen_cur_col and screen_cur_row.
This commit is contained in:
Bram Moolenaar
2016-07-08 22:52:37 +02:00
parent 144445d15f
commit 65549bdef5
2 changed files with 4 additions and 0 deletions

View File

@@ -764,6 +764,8 @@ update_screen(int type)
gui.col = gui_cursor_col; gui.col = gui_cursor_col;
gui.row = gui_cursor_row; gui.row = gui_cursor_row;
gui_update_cursor(FALSE, FALSE); gui_update_cursor(FALSE, FALSE);
screen_cur_col = gui.col;
screen_cur_row = gui.row;
} }
gui_update_scrollbars(FALSE); gui_update_scrollbars(FALSE);
} }

View File

@@ -758,6 +758,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 */
/**/
2004,
/**/ /**/
2003, 2003,
/**/ /**/