From 30394cdcf9547b5b974e6593eb149a7d5c8ff625 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 24 Oct 2013 17:11:07 -0400 Subject: fix placement of black/white note lines/bars in MIDI streamview --- gtk2_ardour/midi_streamview.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gtk2_ardour/midi_streamview.cc') diff --git a/gtk2_ardour/midi_streamview.cc b/gtk2_ardour/midi_streamview.cc index f192607da4..6072f88234 100644 --- a/gtk2_ardour/midi_streamview.cc +++ b/gtk2_ardour/midi_streamview.cc @@ -301,7 +301,7 @@ MidiStreamView::draw_note_lines() for (int i = highest_note(); i >= lowest_note(); --i) { - y = floor (note_to_y(i)); + y = note_to_y (i); /* this is the line actually corresponding to the division * between notes @@ -328,7 +328,7 @@ MidiStreamView::draw_note_lines() double h = y - prev_y; double mid = y + (h/2.0); - + if (height > 1.0) { _note_lines->add (mid, h, color); } -- cgit v1.2.3