Tidy up region gain line drawing slightly so that it doesn't overhang its region.

git-svn-id: svn://localhost/ardour2/branches/3.0@5839 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2009-10-21 12:32:46 +00:00
parent 20f7592fab
commit 516048882c
2 changed files with 2 additions and 1 deletions

View File

@ -494,7 +494,7 @@ AudioRegionView::set_height (gdouble height)
gain_line->show ();
}
}
gain_line->set_height ((uint32_t) rint (height - NAME_HIGHLIGHT_SIZE));
gain_line->set_height ((uint32_t) rint (height - NAME_HIGHLIGHT_SIZE - 2));
}
manage_zero_line ();

View File

@ -45,6 +45,7 @@ AudioRegionGainLine::AudioRegionGainLine (const string & name, Session& s, Audio
assert(l->parameter().type() == EnvelopeAutomation);
group->raise_to_top ();
group->property_y() = 2;
set_uses_gain_mapping (true);
terminal_points_can_slide = false;
}