Index: gtk2_ardour/midi_streamview.cc
===================================================================
--- gtk2_ardour/midi_streamview.cc	(revision 7192)
+++ gtk2_ardour/midi_streamview.cc	(working copy)
@@ -296,7 +296,13 @@
 {
 	StreamView::update_contents_height();
 	_note_lines->property_y2() = height;
-	draw_note_lines();
+	
+	if(height < 140){
+		_note_lines->clear();
+	}
+	else {
+		draw_note_lines();
+	}
 }
 
 void
