diff --git a/src/engraving/rendering/score/tlayout.cpp b/src/engraving/rendering/score/tlayout.cpp index fad1f00270f11..709c35f13caed 100644 --- a/src/engraving/rendering/score/tlayout.cpp +++ b/src/engraving/rendering/score/tlayout.cpp @@ -3508,6 +3508,11 @@ void TLayout::layoutKeySig(const KeySig* item, KeySig::LayoutData* ldata, const // return; // } + // We do not show keys if the key is for instrument change and we are in concert pitch mode + if (item->forInstrumentChange() and item->concertPitch()) { + return; + } + double spatium = item->spatium(); double step = spatium * (item->staff() ? item->staff()->staffTypeForElement(item)->lineDistance().val() * 0.5 : 0.5);