Skip to content

Commit

Permalink
fix #272687: Unable to select an SFZ playback for a drum instrument
Browse files Browse the repository at this point in the history
  • Loading branch information
lasconic committed May 24, 2018
1 parent 9e937ba commit 94b68b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mscore/mixer.cpp
Expand Up @@ -342,7 +342,7 @@ void Mixer::patchListChanged()
bool drum = m.part->instrument()->useDrumset();
pe->patch->clear();
for (const MidiPatch* p : pl) {
if (p->drum == drum)
if (p->drum == drum || p->synti != "Fluid")
pe->patch->addItem(p->name, QVariant::fromValue<void*>((void*)p));
}
pe->setPart(m.part, m.articulation);
Expand Down

0 comments on commit 94b68b3

Please sign in to comment.