Skip to content

Commit

Permalink
fix #280033: Timeline: Repeat Measure bar displays as empty bar
Browse files Browse the repository at this point in the history
  • Loading branch information
lasconic committed Dec 19, 2018
1 parent d7232a8 commit 5bfd27e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mscore/timeline.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2446,7 +2446,8 @@ QColor Timeline::colorBox(QGraphicsRectItem* item)
for (int track = stave * VOICES; track < stave * VOICES + VOICES; track++) {
ChordRest* chord_rest = seg->cr(track);
if (chord_rest) {
if (chord_rest->type() == ElementType::CHORD)
ElementType crt = chord_rest->type();
if (crt == ElementType::CHORD || crt == ElementType::REPEAT_MEASURE)
return QColor(Qt::gray);
}
}
Expand Down

0 comments on commit 5bfd27e

Please sign in to comment.