13
0

change velocity bar inside notes to extend to edges of note

Having the velocity bar inset from note causes distracting space at beginning of note
when viewing a MIDI note that is zoomed out
This commit is contained in:
Paul Davis 2020-03-26 10:12:54 -06:00
parent 672c698eb3
commit f744b5fc12

View File

@ -78,8 +78,8 @@ Note::render (Rect const & area, Cairo::RefPtr<Cairo::Context> context) const
self.y1 = self.y0 + center + 2;
self.y0 = self.y0 + center - 1;
const double width = (self.x1 - self.x0) - (2 * outline_width());
self.x0 = self.x0 + outline_width()+1;
self.x1 = self.x0 + ((width-2) * _velocity);
self.x0 = self.x0 + outline_width();
self.x1 = self.x0 + (width * _velocity);
const Rect draw = self.intersection (area);