Skip to content

Commit

Permalink
fix #26971: Seek now works after repeat
Browse files Browse the repository at this point in the history
  • Loading branch information
Igevorse committed Jun 30, 2014
1 parent f384741 commit e5e9402
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mscore/scoreview.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@
#include "libmscore/rehearsalmark.h"
#include "libmscore/excerpt.h"
#include "libmscore/stafftype.h"
#include "libmscore/repeatlist.h"

#include "inspector/inspector.h"

Expand Down Expand Up @@ -243,7 +244,7 @@ class SeekTransition : public QMouseEventTransition
}
virtual void onTransition(QEvent*) {
if (seq)
seq->seek(cr->tick());
seq->seek(seq->score()->repeatList()->tick2utick(cr->tick()));
canvas->setCursorVisible(true);
}
public:
Expand Down

0 comments on commit e5e9402

Please sign in to comment.