editor: make selection a lighter shade of blue, much easier to read

This commit is contained in:
Philipp Brüschweiler 2012-10-02 11:06:52 +02:00 committed by Kristian Høgsberg
parent 237358be93
commit b8911dcdd7
1 changed files with 1 additions and 1 deletions

View File

@ -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);