From a0c1de47220176d5bbcd9a66228be23439c74826 Mon Sep 17 00:00:00 2001 From: gvnnz Date: Thu, 22 Feb 2024 22:45:49 +0100 Subject: [PATCH] send MIDI data through armed channels to the outside world (#498) --- src/core/rendering/reactor.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/core/rendering/reactor.cpp b/src/core/rendering/reactor.cpp index e3141ba04..a790458bb 100644 --- a/src/core/rendering/reactor.cpp +++ b/src/core/rendering/reactor.cpp @@ -155,6 +155,8 @@ void Reactor::processMidiEvent(ID channelId, const MidiEvent& e, bool canRecordA m_model.swap(model::SwapType::HARD); } sendMidiEventToPlugins(ch.shared->midiQueue, e); + if (ch.canSendMidi()) + sendMidiToOut(channelId, e, ch.midiChannel->outputFilter, m_kernelMidi); // Also send it back to the outside world } /* -------------------------------------------------------------------------- */