Skip to content

Commit

Permalink
Merge pull request #6140 from MarcSabatella/304051-repeat-note
Browse files Browse the repository at this point in the history
fix #304051: repeat single note in normal mode
  • Loading branch information
anatoly-os committed Jun 2, 2020
2 parents 3025046 + 7312b63 commit 52469e0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions mscore/scoreview.cpp
Expand Up @@ -4686,8 +4686,10 @@ 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 52469e0

Please sign in to comment.