From a9b72f87a648619907667203cbbd7fcb651c9ce4 Mon Sep 17 00:00:00 2001 From: nick_m Date: Tue, 16 Aug 2016 00:56:08 +1000 Subject: [PATCH] Add missing line feed in midi_region_view.cc --- gtk2_ardour/midi_region_view.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gtk2_ardour/midi_region_view.cc b/gtk2_ardour/midi_region_view.cc index b0d0424be6..bf7ff669cb 100644 --- a/gtk2_ardour/midi_region_view.cc +++ b/gtk2_ardour/midi_region_view.cc @@ -1716,8 +1716,9 @@ MidiRegionView::update_sustained (Note* ev, bool update_ghost_regions) const double x0 = trackview.editor().sample_to_pixel (note_start_frames); double x1; const double y0 = 1 + floor(midi_stream_view()->note_to_y(note->note())); - double y1;/* trim note display to not overlap the end of its region */ + double y1; + /* trim note display to not overlap the end of its region */ if (note->length() > 0) { Evoral::Beats note_end_time = note->end_time();