From a8bd3496380ceb32e544dfe39cb4d52e4943068c Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 23 Mar 2020 21:45:29 +0100 Subject: [PATCH] patch 8.2.0434: MS-Windows with VTP: Normal color not working Problem: MS-Windows with VTP: Normal color not working. Solution: After changing the Normal color update the VTP console color. (Nobuhiro Takasaki, closes #5836) --- src/highlight.c | 3 +++ src/version.c | 2 ++ 2 files changed, 5 insertions(+) diff --git a/src/highlight.c b/src/highlight.c index 44888e97e..5d90e696a 100644 --- a/src/highlight.c +++ b/src/highlight.c @@ -1484,6 +1484,9 @@ do_highlight( did_highlight_changed = TRUE; redraw_all_later(NOT_VALID); } +#endif +#ifdef FEAT_VTP + control_console_color_rgb(); #endif } #ifdef FEAT_TERMINAL diff --git a/src/version.c b/src/version.c index b8552ed92..6df87b45d 100644 --- a/src/version.c +++ b/src/version.c @@ -738,6 +738,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 434, /**/ 433, /**/ -- 2.50.1