Skip to content

Commit

Permalink
fix #60651: Fret conflict shouldn't be exported to PDF or printed
Browse files Browse the repository at this point in the history
  • Loading branch information
lasconic committed May 14, 2015
1 parent 11ff419 commit 157332c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libmscore/note.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,7 @@ void Note::draw(QPainter* painter) const
foreach(MuseScoreView* view, score()->getViewer())
view->drawBackground(painter, bb);

if (fretConflict()) { //on fret conflict, draw on red background
if (fretConflict() && !score()->printing()) { //on fret conflict, draw on red background
painter->save();
painter->setPen(Qt::red);
painter->setBrush(QBrush(QColor(Qt::red)));
Expand Down

0 comments on commit 157332c

Please sign in to comment.