comparison 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
comparison
equal deleted inserted replaced
28762:e80ee49021f6 28763:b01bca69b1d5
3082 } 3082 }
3083 3083
3084 void 3084 void
3085 term_bg_rgb_color(guicolor_T rgb) 3085 term_bg_rgb_color(guicolor_T rgb)
3086 { 3086 {
3087 term_rgb_color(T_8B, rgb); 3087 if (rgb != INVALCOLOR)
3088 term_rgb_color(T_8B, rgb);
3088 } 3089 }
3089 3090
3090 void 3091 void
3091 term_ul_rgb_color(guicolor_T rgb) 3092 term_ul_rgb_color(guicolor_T rgb)
3092 { 3093 {