mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 23:35:03 +01:00
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
This commit is contained in:
parent
ec24aebfca
commit
2b7d17e904
3 changed files with 18 additions and 15 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue