13
0

fix flickering in tempo curve when markers are reordered.

This commit is contained in:
nick_m 2016-12-11 23:46:49 +11:00
parent b830ad3d66
commit dbbe65777f

View File

@ -178,7 +178,7 @@ Editor::tempo_map_changed (const PropertyChange& /*ignored*/)
struct CurveComparator {
bool operator() (TempoCurve const * a, TempoCurve const * b) {
return a->position() < b->position();
return a->tempo().frame() < b->tempo().frame();
}
};