From 69da82a0213ebac8dfa42af90f8c798df5ed7947 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 14 Sep 2011 16:07:57 +0000 Subject: Don't draw MIDI note horizontal grid lines if they would be less than 3 pixels apart (#4300). git-svn-id: svn://localhost/ardour2/branches/3.0@10080 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/midi_streamview.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gtk2_ardour/midi_streamview.cc') diff --git a/gtk2_ardour/midi_streamview.cc b/gtk2_ardour/midi_streamview.cc index 9c109c2c21..b3caa8d827 100644 --- a/gtk2_ardour/midi_streamview.cc +++ b/gtk2_ardour/midi_streamview.cc @@ -315,7 +315,8 @@ MidiStreamView::draw_note_lines() _note_lines->clear(); - if (child_height() < 140){ + if (child_height() < 140 || note_height() < 3) { + /* track is too small for note lines, or there are too many */ return; } -- cgit v1.2.3