another PresentationInfo sort order fix.

This commit is contained in:
Paul Davis 2016-06-10 13:55:54 -04:00
parent f1d9dbf359
commit 954b17325d
1 changed files with 1 additions and 1 deletions

View File

@ -527,7 +527,7 @@ Drag::add_midi_region (MidiTimeAxisView* view, bool commit)
struct PresentationInfoTimeAxisViewSorter {
bool operator() (TimeAxisView* a, TimeAxisView* b) {
return a->presentation_info() < b->presentation_info();
return a->presentation_info().order() < b->presentation_info().order();
}
};