Skip to content

Commit

Permalink
fix #246176: Hide Fret conflicts in TAB staff when show unprintable i…
Browse files Browse the repository at this point in the history
…s off
  • Loading branch information
lasconic committed Feb 16, 2018
1 parent 4526ec6 commit ae2b690
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 @@ -727,7 +727,7 @@ void Note::draw(QPainter* painter) const
else
painter->fillRect(bb, Qt::white);

if (fretConflict() && !score()->printing()) { //on fret conflict, draw on red background
if (fretConflict() && !score()->printing() && score()->showUnprintable()) { //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 ae2b690

Please sign in to comment.