Skip to content

Commit

Permalink
fix #93236: Page orientation 'Vertical': enter notes with mouse fails…
Browse files Browse the repository at this point in the history
… from a page > 1
  • Loading branch information
lasconic committed Jan 22, 2016
1 parent c807c0d commit ec05fe3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libmscore/score.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1371,7 +1371,7 @@ bool Score::getPosition(Position* pos, const QPointF& p, int voice) const
sy2 = s1y2 + (nstaff->bbox().y() - s1y2) * .5;
}
else
sy2 = system->page()->height() - system->pos().y(); // system->height();
sy2 = system->page()->canvasPos().y() + system->page()->height() - system->pos().y(); // system->height();
if (y < sy2) {
sstaff = ss;
break;
Expand Down

0 comments on commit ec05fe3

Please sign in to comment.