mirror of
https://github.com/vim/vim.git
synced 2025-09-26 04:04:07 -04:00
patch 8.1.0700: using "gt" sometimes does not redraw a tab
Problem: Using "gt" sometimes does not redraw a tab. (Jason Franklin) Solution: Always set must_redraw in redraw_all_later().
This commit is contained in:
@@ -238,6 +238,9 @@ redraw_all_later(int type)
|
|||||||
{
|
{
|
||||||
redraw_win_later(wp, type);
|
redraw_win_later(wp, type);
|
||||||
}
|
}
|
||||||
|
// This may be needed when switching tabs.
|
||||||
|
if (must_redraw < type)
|
||||||
|
must_redraw = type;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -799,6 +799,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 */
|
||||||
|
/**/
|
||||||
|
700,
|
||||||
/**/
|
/**/
|
||||||
699,
|
699,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user