Skip to content

Commit

Permalink
Merge pull request #4971 from mattmcclinch/288437-range-selection
Browse files Browse the repository at this point in the history
fix #288437: Range selection is drawn incorrectly
  • Loading branch information
dmitrio95 committed Apr 29, 2019
2 parents 82f27b7 + 0888a77 commit e35cc7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mscore/scoreview.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1209,7 +1209,7 @@ void ScoreView::paint(const QRect& r, QPainter& p)
if (!ss->enabled())
ss = ss->next1MMenabled();
if (es && !es->enabled())
es = es->prev1MMenabled();
es = es->next1MMenabled();
if (es && ss->tick() > es->tick()) // start after end?
return;

Expand Down

0 comments on commit e35cc7e

Please sign in to comment.