13
0

fix thinko when relabelling markers

This commit is contained in:
Paul Davis 2014-03-14 13:43:51 -04:00
parent 82bce6cc76
commit 42e6353338

View File

@ -334,7 +334,10 @@ Editor::update_marker_labels (ArdourCanvas::Group* group)
list<Marker*>::iterator prev = sorted.end ();
list<Marker*>::iterator next = i;
++next;
if (next != sorted.end()) {
++next;
}
while (i != sorted.end()) {