Skip to content

Commit

Permalink
Manually merged #6140 to master
Browse files Browse the repository at this point in the history
  • Loading branch information
anatoly-os committed Aug 7, 2020
1 parent 0e720ea commit 8dfc799
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions mscore/scoreview.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4932,8 +4932,12 @@ void ScoreView::cmdRepeatSelection()
return;
}
if (!selection.isRange()) {
qDebug("wrong selection type");
return;
ChordRest* cr = _score->getSelectedChordRest();
if (!cr) {
return;
}

_score->select(cr, SelectType::RANGE);
}

if (!checkCopyOrCut()) {
Expand Down

0 comments on commit 8dfc799

Please sign in to comment.