Skip to content

Commit

Permalink
Merge pull request #3964 from mattmcclinch/276139-update-grips
Browse files Browse the repository at this point in the history
fix #276139: Using Inspector after leaving edit mode causes crash.
  • Loading branch information
anatoly-os committed Sep 16, 2018
2 parents cb366c4 + 728bf35 commit 9dac228
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mscore/inspector/inspectorBase.cpp
Expand Up @@ -399,7 +399,8 @@ void InspectorBase::valueChanged(int idx, bool reset)
recursion = false;

ScoreView* cv = mscore->currentScoreView();
cv->updateGrips();
if (cv->editMode())
cv->updateGrips();
}

//---------------------------------------------------------
Expand Down

0 comments on commit 9dac228

Please sign in to comment.