Skip to content

Commit

Permalink
fix #18464: BPM in Play Panel only shows the first tempo marking
Browse files Browse the repository at this point in the history
  • Loading branch information
lasconic committed Apr 30, 2013
1 parent 63c0144 commit 957be0c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions mscore/playpanel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,8 @@ void PlayPanel::updatePosLabel(int utick)
if (cs) {
tick = cs->repeatList()->utick2tick(utick);
cs->sigmap()->tickValues(tick, &bar, &beat, &t);
double tpo = cs->tempomap()->tempo(tick) * cs->tempomap()->relTempo();
setTempo(tpo);
}
char buffer[32];
sprintf(buffer, "%03d.%02d", bar+1, beat+1);
Expand Down

0 comments on commit 957be0c

Please sign in to comment.