commit e8135b52b169bc4989eafc8f520123520e4f34d8
parent a98176b35343291d0178d8e9b01985582f12b349
Author: dsp56300 <87139854+dsp56300@users.noreply.github.com>
Date: Tue, 18 Jan 2022 16:25:28 +0100
Merge pull request #34 from 790/ui
fixes
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/source/jucePlugin/ui/Virus_Parts.cpp b/source/jucePlugin/ui/Virus_Parts.cpp
@@ -98,7 +98,7 @@ Parts::Parts(VirusParameterBinding & _parameterBinding, Virus::Controller& _cont
_parameterBinding.bind(m_partPans[pt], Virus::Param_Panorama, pt);
addAndMakeVisible(m_partPans[pt]);
}
- m_partSelect[m_controller.getCurrentPart()].setToggleState(true, NotificationType::sendNotification);
+ m_partSelect[m_controller.getCurrentPart()].setToggleState(true, NotificationType::dontSendNotification);
m_btSingleMode.setRadioGroupId(0x3cf);
m_btMultiMode.setRadioGroupId(0x3cf);
@@ -121,6 +121,7 @@ Parts::Parts(VirusParameterBinding & _parameterBinding, Virus::Controller& _cont
//m_btMultiSingleMode.setBounds(m_btSingleMode.getBounds().translated(m_btSingleMode.getWidth()+4, 0));
m_btMultiMode.setBounds(m_btSingleMode.getBounds().translated(m_btSingleMode.getWidth()+4, 0));
+ refreshParts();
}
Parts::~Parts() {
}