commit 5518b75f85e0d737e60975e0613a6e71fa1f0e09 parent 574689015dffedb7e2deee62029ec41901e40390 Author: dsp56300 <dsp56300@users.noreply.github.com> Date: Mon, 14 Mar 2022 23:51:27 +0100 make sure that we call setCurrentPart on parameter binding, no the controller directly Diffstat:
M | source/jucePlugin/ui3/Parts.cpp | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/source/jucePlugin/ui3/Parts.cpp b/source/jucePlugin/ui3/Parts.cpp @@ -42,7 +42,7 @@ namespace genericVirusUI void Parts::selectPart(const size_t _part) { - m_editor.getController().setCurrentPart(static_cast<uint8_t>(_part)); + m_editor.getParameterBinding().setPart(static_cast<uint8_t>(_part)); } void Parts::selectPrevPreset(const size_t _part)