From a57076d203e57d5c2ff7f5cbf223a87628dc51c3 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Tue, 31 Oct 2023 22:35:05 +0100 Subject: [PATCH] Fix MIDI input monitoring without connections This was seemingly accidentally committed in 07d7e0bf544. MIDI Monitoring works now with MIDI devices that are not connected to a Track or Bus. --- libs/ardour/port_manager.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/port_manager.cc b/libs/ardour/port_manager.cc index df6387ff5d..f5aada8472 100644 --- a/libs/ardour/port_manager.cc +++ b/libs/ardour/port_manager.cc @@ -2001,7 +2001,7 @@ PortManager::run_input_meters (pframes_t n_samples, samplecnt_t rate) assert (!port_is_mine (p.first)); PortEngine::PortHandle ph = _backend->get_port_by_name (p.first); - if (!ph || !_backend->connected (ph)) { + if (!ph) { continue; }