forked from aniani/vim
patch 8.1.0442: GUI: cursor not drawn after ":redraw | sleep"
Problem: GUI: Cursor not drawn after ":redraw | sleep". Solution: Flush the output. (closes #3496)
This commit is contained in:
@@ -9272,7 +9272,7 @@ do_sleep(long msec)
|
|||||||
long wait_now;
|
long wait_now;
|
||||||
|
|
||||||
cursor_on();
|
cursor_on();
|
||||||
out_flush();
|
out_flush_cursor(FALSE, FALSE);
|
||||||
for (done = 0; !got_int && done < msec; done += wait_now)
|
for (done = 0; !got_int && done < msec; done += wait_now)
|
||||||
{
|
{
|
||||||
wait_now = msec - done > 1000L ? 1000L : msec - done;
|
wait_now = msec - done > 1000L ? 1000L : msec - done;
|
||||||
|
@@ -794,6 +794,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 */
|
||||||
|
/**/
|
||||||
|
442,
|
||||||
/**/
|
/**/
|
||||||
441,
|
441,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user