Skip to content

Commit

Permalink
fix #46686
Browse files Browse the repository at this point in the history
  • Loading branch information
wschweer committed Feb 9, 2015
1 parent 12b394b commit 0891e57
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions libmscore/edit.cpp
Expand Up @@ -590,6 +590,9 @@ void Score::cmdAddTimeSig(Measure* fm, int staffIdx, TimeSig* ts, bool local)
else {
Score* score = rootScore();
Measure* fm = score->tick2measure(tick);

printf("add Timesig fm mmRest %p count %d\n", fm->mmRest(), fm->mmRestCount());

This comment has been minimized.

Copy link
@Jojo-Schmitz

Jojo-Schmitz Feb 9, 2015

Contributor

rather a qDebug()?

This comment has been minimized.

Copy link
@wschweer

wschweer Feb 9, 2015

Author Contributor

Its a debugging artifact i forgot to remove.


//
// rewrite all measures up to the next time signature
//
Expand Down
2 changes: 1 addition & 1 deletion mscore/textcursor.cpp
Expand Up @@ -121,7 +121,7 @@ void PositionCursor::move(int tick)
// set mark height for whole system
//
Score* score = _sv->score();
Measure* measure = score->tick2measure(tick);
Measure* measure = score->tick2measureMM(tick);
if (measure == 0)
return;
qreal x;
Expand Down

0 comments on commit 0891e57

Please sign in to comment.