mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 07:14:56 +01:00
fix thinko when relabelling markers
This commit is contained in:
parent
82bce6cc76
commit
42e6353338
1 changed files with 4 additions and 1 deletions
|
|
@ -334,7 +334,10 @@ Editor::update_marker_labels (ArdourCanvas::Group* group)
|
||||||
|
|
||||||
list<Marker*>::iterator prev = sorted.end ();
|
list<Marker*>::iterator prev = sorted.end ();
|
||||||
list<Marker*>::iterator next = i;
|
list<Marker*>::iterator next = i;
|
||||||
++next;
|
|
||||||
|
if (next != sorted.end()) {
|
||||||
|
++next;
|
||||||
|
}
|
||||||
|
|
||||||
while (i != sorted.end()) {
|
while (i != sorted.end()) {
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue