mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +01:00
Revert "MIDI region view: remove debug/analysis output"
This reverts commit d01ad0b4d4.
These are still useful.
This commit is contained in:
parent
a3c5db5d51
commit
dc9eb38a27
1 changed files with 10 additions and 0 deletions
|
|
@ -1093,6 +1093,8 @@ 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();
|
||||||
|
|
@ -1223,6 +1225,9 @@ 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
|
||||||
|
|
@ -1232,6 +1237,8 @@ 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();
|
||||||
|
|
@ -1280,6 +1287,9 @@ 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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue