Skip to content

Commit d558f27

Browse files
committed
Hide internal GM synth from MIDI settings in plugin
1 parent 2bf367f commit d558f27

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Source/Dialogs/MidiSettingsPanel.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,9 @@ class MidiSettingsPanel final : public SettingsDialogPanel
126126
midiOutputProperties.add(new MidiSettingsComboBox(false, processor, deviceInfo));
127127
}
128128

129-
midiOutputProperties.add(new InternalSynthToggle(processor));
129+
if(ProjectInfo::isStandalone) {
130+
midiOutputProperties.add(new InternalSynthToggle(processor));
131+
}
130132

131133
midiProperties.addSection("MIDI Inputs", midiInputProperties);
132134
midiProperties.addSection("MIDI Outputs", midiOutputProperties);

0 commit comments

Comments
 (0)