Skip to content

Commit

Permalink
fix #23041: Printing an Album omits the last page
Browse files Browse the repository at this point in the history
  • Loading branch information
Jojo-Schmitz committed Jan 29, 2014
1 parent ea1e881 commit 10638d7
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 10638d7

Please sign in to comment.