From 954b17325d97f91cd1f728a1720edb66c42c0154 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 10 Jun 2016 13:55:54 -0400 Subject: another PresentationInfo sort order fix. --- gtk2_ardour/editor_drag.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/editor_drag.cc b/gtk2_ardour/editor_drag.cc index 93fd8a33c0..c95979514f 100644 --- a/gtk2_ardour/editor_drag.cc +++ b/gtk2_ardour/editor_drag.cc @@ -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(); } }; -- cgit v1.2.3