From 20d5d93b7ec47d57d7ee3be3226c97f59e024efe Mon Sep 17 00:00:00 2001 From: Jean Pierre Cimalando Date: Wed, 3 Feb 2021 14:41:16 +0100 Subject: [PATCH] Request all CC slots on file change --- editor/src/editor/Editor.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/editor/src/editor/Editor.cpp b/editor/src/editor/Editor.cpp index 128dd9df..01923b98 100644 --- a/editor/src/editor/Editor.cpp +++ b/editor/src/editor/Editor.cpp @@ -924,6 +924,9 @@ void Editor::Impl::changeSfzFile(const std::string& filePath) ctrl_->uiSendValue(EditId::SfzFile, filePath); currentSfzFile_ = filePath; updateSfzFileLabel(filePath); + + // request the whole CC information + sendQueuedOSC("/cc/slots", "", nullptr); } void Editor::Impl::changeToNextSfzFile(long offset)