MIDI region view: remove debug/analysis output

This commit is contained in:
Paul Davis 2022-04-05 20:50:04 -06:00
parent 1999a3aae8
commit d01ad0b4d4

View file

@ -1093,8 +1093,6 @@ MidiRegionView::model_changed()
return; return;
} }
Timing t;
if (_active_notes) { if (_active_notes) {
// Currently recording // Currently recording
const samplecnt_t zoom = trackview.editor().get_current_zoom(); const samplecnt_t zoom = trackview.editor().get_current_zoom();
@ -1225,9 +1223,6 @@ MidiRegionView::model_changed()
_marked_for_selection.clear (); _marked_for_selection.clear ();
_marked_for_velocity.clear (); _marked_for_velocity.clear ();
_pending_note_selection.clear (); _pending_note_selection.clear ();
t.update ();
std::cerr << "REDISPLAY(model) of " << region()->name() << " complete after " << t.elapsed_msecs() << std::endl;
} }
void void
@ -1237,8 +1232,6 @@ MidiRegionView::view_changed()
return; return;
} }
Timing t;
if (_active_notes) { if (_active_notes) {
// Currently recording // Currently recording
const samplecnt_t zoom = trackview.editor().get_current_zoom(); const samplecnt_t zoom = trackview.editor().get_current_zoom();
@ -1287,9 +1280,6 @@ MidiRegionView::view_changed()
update_sysexes(); update_sysexes();
update_patch_changes (); update_patch_changes ();
t.update ();
std::cerr << "REDISPLAY(view) of " << region()->name() << " complete after " << t.elapsed_msecs() << std::endl;
} }
void void