Skip to content

Commit

Permalink
Merge pull request #6069 from mattmcclinch/305125-drag-selection
Browse files Browse the repository at this point in the history
Fix #305125: Crash in debug build when dragging selected notes
  • Loading branch information
anatoly-os committed May 12, 2020
2 parents bcc40aa + 258b564 commit af3ed8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libmscore/cmd.cpp
Expand Up @@ -333,7 +333,7 @@ void Score::update(bool resetCmdState)
if (resetCmdState)
cs.reset();
}
if (_selection.isRange())
if (_selection.isRange() && !_selection.isLocked())
_selection.updateSelectedElements();
}

Expand Down

0 comments on commit af3ed8b

Please sign in to comment.