diff src/term.c @ 28763:b01bca69b1d5 v8.2.4906

patch 8.2.4906: MS-Windows: cannot use transparent background Commit: https://github.com/vim/vim/commit/aa04e1b0be343ff606e25a48d59bc057edcc6e87 Author: Yasuhiro Matsumoto <mattn.jp@gmail.com> Date: Sat May 7 14:09:19 2022 +0100 patch 8.2.4906: MS-Windows: cannot use transparent background Problem: MS-Windows: cannot use transparent background. Solution: Make transparent background work with 'termguicolors' and NONE background color. (Yasuhiro Matsumoto, closes #10310, closes #7162)
author Bram Moolenaar <Bram@vim.org>
date Sat, 07 May 2022 15:15:03 +0200
parents 40b087823dc7
children d770568e6c98
line wrap: on
line diff
--- a/src/term.c
+++ b/src/term.c
@@ -3084,7 +3084,8 @@ term_fg_rgb_color(guicolor_T rgb)
     void
 term_bg_rgb_color(guicolor_T rgb)
 {
-    term_rgb_color(T_8B, rgb);
+    if (rgb != INVALCOLOR)
+	term_rgb_color(T_8B, rgb);
 }
 
     void