summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_summary.cc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2015-01-07 01:42:49 -0500
committerDavid Robillard <d@drobilla.net>2015-01-07 01:42:49 -0500
commit81c196e9ca3aee03c309bf03f2ce5269af584cc5 (patch)
tree53bd4ad95d4e6485250e4d5576526662d1969a4e /gtk2_ardour/editor_summary.cc
parent58a4e01430212113ed3fcadb3569a8b1e591fc31 (diff)
Improve contrast of summary.
Diffstat (limited to 'gtk2_ardour/editor_summary.cc')
-rw-r--r--gtk2_ardour/editor_summary.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk2_ardour/editor_summary.cc b/gtk2_ardour/editor_summary.cc
index 080854c723..479ab1319c 100644
--- a/gtk2_ardour/editor_summary.cc
+++ b/gtk2_ardour/editor_summary.cc
@@ -177,7 +177,7 @@ EditorSummary::render_background_image ()
StreamView* s = (*i)->view ();
if (s) {
- cairo_set_line_width (cr, _track_height * 0.6);
+ cairo_set_line_width (cr, _track_height * 0.8);
s->foreach_regionview (sigc::bind (
sigc::mem_fun (*this, &EditorSummary::render_region),
@@ -242,10 +242,10 @@ EditorSummary::render (cairo_t* cr, cairo_rectangle_t*)
int32_t width = _view_rectangle_x.second - _view_rectangle_x.first;
int32_t height = _view_rectangle_y.second - _view_rectangle_y.first;
cairo_rectangle (cr, _view_rectangle_x.first, _view_rectangle_y.first, width, height);
- cairo_set_source_rgba (cr, 1, 1, 1, 0.25);
+ cairo_set_source_rgba (cr, 1, 1, 1, 0.1);
cairo_fill_preserve (cr);
cairo_set_line_width (cr, 1);
- cairo_set_source_rgba (cr, 1, 1, 1, 0.5);
+ cairo_set_source_rgba (cr, 1, 1, 1, 0.4);
cairo_stroke (cr);
/* Playhead */