summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Brüschweiler <blei42@gmail.com>2012-10-02 11:06:52 +0200
committerKristian Høgsberg <krh@bitplanet.net>2012-10-04 11:31:17 -0400
commitb8911dcdd7c243c27e44e7310dce61c29b2314b7 (patch)
tree279bf6847e85c9a4cfc8cbd95131a855a66c30b8
parent237358be932e819532f5085269497958ad2f6aeb (diff)
editor: make selection a lighter shade of blue, much easier to read
-rw-r--r--clients/editor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/clients/editor.c b/clients/editor.c
index 6b67dd3c..c17ae8f0 100644
--- a/clients/editor.c
+++ b/clients/editor.c
@@ -639,7 +639,7 @@ text_entry_draw_selection(struct text_entry *entry, cairo_t *cr)
cairo_save (cr);
- cairo_set_source_rgba(cr, 0.0, 0.0, 1.0, 1.0);
+ cairo_set_source_rgba(cr, 0.3, 0.3, 1.0, 0.5);
cairo_rectangle(cr,
start.x, extents.y_bearing + extents.height + 2,
end.x - start.x, -extents.height - 4);