[vte/vte-next: 87/114] Fix default cursor background colour
- From: Christian Persch <chpe src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [vte/vte-next: 87/114] Fix default cursor background colour
- Date: Mon, 30 May 2011 17:14:03 +0000 (UTC)
commit 3c833f5758d146b892dd216957f7c5781fe2146c
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 3678f47..d1c99da 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]