1
0
forked from aniani/vim

patch 8.2.0656: MS-Windows: redrawing right screen edge may not be needed

Problem:    MS-Windows: redrawing right screen edge may not be needed.
Solution:   Check the build version. (Nobuhiro Takasaki, closes #6002)
This commit is contained in:
Bram Moolenaar
2020-04-28 20:44:42 +02:00
parent 224a5f17c6
commit 7ed8f59ae0
4 changed files with 21 additions and 1 deletions

View File

@@ -2439,7 +2439,8 @@ win_update(win_T *wp)
#ifdef FEAT_VTP
// Rewrite the character at the end of the screen line.
if (use_vtp())
// See the version that was fixed.
if (use_vtp() && get_conpty_fix_type() < 1)
{
int i;