Skip to content

Commit

Permalink
Merge pull request #5065 from MarcSabatella/289651-clef-inspector
Browse files Browse the repository at this point in the history
fix #289651: show courtesy checkbox not working in clef inspector
  • Loading branch information
anatoly-os committed May 25, 2019
2 parents 83f9bf5 + d8d191c commit 9514436
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mscore/inspector/inspector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -954,7 +954,8 @@ void InspectorClef::setElement()
void InspectorClef::valueChanged(int idx)
{
// copy into 'other clef' the ShowCouretsy ser of this clef
if (idx == 6 && otherClef)
Pid pid = iList[idx].t;
if (pid == Pid::SHOW_COURTESY && otherClef)
otherClef->setShowCourtesy(c.showCourtesy->isChecked());
InspectorBase::valueChanged(idx);
}
Expand Down

0 comments on commit 9514436

Please sign in to comment.