[vte] Don't hide cursor even if cell is invisible



commit 18ee5f522d8bc2f5dfe896f40eba8d5313cb310f
Author: Behdad Esfahbod <behdad behdad org>
Date:   Thu Apr 1 01:41:36 2010 -0400

    Don't hide cursor even if cell is invisible

 src/vte.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/vte.c b/src/vte.c
index eddf06b..884ef4a 100644
--- a/src/vte.c
+++ b/src/vte.c
@@ -8797,7 +8797,7 @@ vte_terminal_determine_colors(VteTerminal *terminal,
 	  *back = tmp;
 	}
 
-	if (cell && cell->attr.invisible) {
+	if (!cursor && cell && cell->attr.invisible) {
 		*fore = *back;
 	}
 }



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]