[vte/vte-next] Fix default cursor background colour



commit b0fabc4a4b23b852e0c9c641560c0bac9f073e52
Author: Christian Persch <chpe gnome org>
Date:   Sun May 22 22:43:48 2011 +0200

    Fix default cursor background colour
    
    Use the same colour as the default foreground colour, since
    the previous value was the same as the default background colour.

 src/palette.c       |    2 +-
 src/vtepalettecss.h |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/palette.c b/src/palette.c
index ecaf005..f6dfaa9 100644
--- a/src/palette.c
+++ b/src/palette.c
@@ -200,7 +200,7 @@ write_properties (PropertyWriteFunc func)
         color.alpha = 1.;
         write_property_va (func, &color, "selection-background-color");
 
-        color.red = color.green = color.blue = 0.;
+        color.red = color.green = color.blue = .75;
         color.alpha = 1.;
         write_property_va (func, &color, "cursor-background-color");
 }
diff --git a/src/vtepalettecss.h b/src/vtepalettecss.h
index 426ea08..4dba569 100644
--- a/src/vtepalettecss.h
+++ b/src/vtepalettecss.h
@@ -263,4 +263,4 @@
 "-VteTerminal-bold-foreground-color: rgb(255,255,255);\n"
 "-VteTerminal-dim-foreground-color: rgb(96,96,96);\n"
 "-VteTerminal-selection-background-color: rgb(191,191,191);\n"
-"-VteTerminal-cursor-background-color: rgb(0,0,0);\n"
+"-VteTerminal-cursor-background-color: rgb(191,191,191);\n"



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