Skip to content

Commit

Permalink
Merge pull request #674 from Jojo-Schmitz/23041-printing-album-omits-…
Browse files Browse the repository at this point in the history
…last-page

fix #23041: Printing an Album omits the last page
  • Loading branch information
wschweer committed Jan 30, 2014
2 parents 9f5382c + 10638d7 commit 83a4f3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mscore/album.cpp
Expand Up @@ -106,7 +106,7 @@ void Album::print()
e->itemDiscovered = 0;
if (!e->visible())
continue;
QPointF pos(e->pagePos() - page->pos());
QPointF pos(e->pagePos());
painter.translate(pos);
e->draw(&painter);
painter.translate(-pos);
Expand Down

0 comments on commit 83a4f3e

Please sign in to comment.