We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24e17cb commit e3e02c7Copy full SHA for e3e02c7
kitty/cell_vertex.glsl
@@ -220,6 +220,10 @@ void main() {
220
// Selection and cursor
221
bg = choose_color(float(is_selected & ONE), color_to_vec(highlight_bg), bg);
222
background = choose_color(cell_has_block_cursor, color_to_vec(cursor_color), bg);
223
+#if !defined(TRANSPARENT) && defined(SPECIAL)
224
+ float is_special_cell = cell_has_block_cursor + float(is_selected & ONE);
225
+ bg_alpha = step(0.5, is_special_cell);
226
+#endif
227
#endif
228
229
0 commit comments