diff options
author | Philipp Brüschweiler <blei42@gmail.com> | 2012-10-02 11:06:52 +0200 |
---|---|---|
committer | Kristian Høgsberg <krh@bitplanet.net> | 2012-10-04 11:31:17 -0400 |
commit | b8911dcdd7c243c27e44e7310dce61c29b2314b7 (patch) | |
tree | 279bf6847e85c9a4cfc8cbd95131a855a66c30b8 | |
parent | 237358be932e819532f5085269497958ad2f6aeb (diff) |
editor: make selection a lighter shade of blue, much easier to read
-rw-r--r-- | clients/editor.c | 2 |
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); |