summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_summary.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-03-20 17:08:07 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-03-20 17:08:07 +0000
commit2b7d17e9041363e19d71d9a2dd9425d045536eb8 (patch)
treefb254fdaac5117359a1ecbf1b6979ace9d20a207 /gtk2_ardour/editor_summary.cc
parentec24aebfca83199f42133075b7b9c4670a544195 (diff)
reorder editor route list columns to put visible and active first (from joern)
git-svn-id: svn://localhost/ardour2/branches/3.0@11732 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/editor_summary.cc')
-rw-r--r--gtk2_ardour/editor_summary.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/gtk2_ardour/editor_summary.cc b/gtk2_ardour/editor_summary.cc
index 166026d092..deba448071 100644
--- a/gtk2_ardour/editor_summary.cc
+++ b/gtk2_ardour/editor_summary.cc
@@ -137,7 +137,7 @@ EditorSummary::on_expose_event (GdkEventExpose* event)
void
EditorSummary::render (cairo_t* cr)
{
- /* background */
+ /* background (really just the dividing lines between tracks */
cairo_set_source_rgb (cr, 0, 0, 0);
cairo_rectangle (cr, 0, 0, get_width(), get_height());
@@ -184,6 +184,8 @@ EditorSummary::render (cairo_t* cr)
continue;
}
+ /* paint a non-bg colored strip to represent the track itself */
+
cairo_set_source_rgb (cr, 0.2, 0.2, 0.2);
cairo_set_line_width (cr, _track_height - 1);
cairo_move_to (cr, 0, y + _track_height / 2);