0
0
mirror of https://github.com/vim/vim.git synced 2025-10-02 05:04:20 -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:
Bram Moolenaar
2019-01-06 22:22:07 +01:00
parent 6d11f3b891
commit 04b4e1a424
2 changed files with 5 additions and 0 deletions

View File

@@ -238,6 +238,9 @@ redraw_all_later(int type)
{
redraw_win_later(wp, type);
}
// This may be needed when switching tabs.
if (must_redraw < type)
must_redraw = type;
}
/*