diff --git a/currentGitHash.txt b/currentGitHash.txt index 58dc7a1ca3..0414d1a449 100644 --- a/currentGitHash.txt +++ b/currentGitHash.txt @@ -1 +1 @@ -cc52289596f83b98fa709b1e257170bf080c7fdd +00175473082c61c640732e37f6ee1fe453406d90 diff --git a/hi_backend/backend/currentGit.h b/hi_backend/backend/currentGit.h index b9a938ef99..c82cddf8d8 100644 --- a/hi_backend/backend/currentGit.h +++ b/hi_backend/backend/currentGit.h @@ -1 +1 @@ -#define PREVIOUS_HISE_COMMIT "cc52289596f83b98fa709b1e257170bf080c7fdd" +#define PREVIOUS_HISE_COMMIT "00175473082c61c640732e37f6ee1fe453406d90" diff --git a/hi_core/hi_modules/synthesisers/editors/GroupBody.cpp b/hi_core/hi_modules/synthesisers/editors/GroupBody.cpp index 1298750dba..8e7b008bd1 100644 --- a/hi_core/hi_modules/synthesisers/editors/GroupBody.cpp +++ b/hi_core/hi_modules/synthesisers/editors/GroupBody.cpp @@ -173,6 +173,7 @@ GroupBody::GroupBody (ProcessorEditor *p) spreadSlider->setup(getProcessor(), ModulatorSynthGroup::SpecialParameters::UnisonoSpread, "Spread"); spreadSlider->setMode(HiSlider::Mode::NormalizedPercentage); spreadSlider->setRange(0.0, 2.0, 0.01); + spreadSlider->setValue(getProcessor()->getAttribute(ModulatorSynthGroup::SpecialParameters::UnisonoSpread), dontSendNotification); spreadSlider->setIsUsingModulatedRing(true); detuneSlider->setIsUsingModulatedRing(true); diff --git a/hi_core/hi_modules/synthesisers/editors/GroupBody.h b/hi_core/hi_modules/synthesisers/editors/GroupBody.h index 1f680f4be4..673c0980a9 100644 --- a/hi_core/hi_modules/synthesisers/editors/GroupBody.h +++ b/hi_core/hi_modules/synthesisers/editors/GroupBody.h @@ -68,6 +68,8 @@ class GroupBody : public ProcessorEditorBody, modSelector->clear(dontSendNotification); carrierSelector->clear(dontSendNotification); + + auto offset = (int)ModulatorSynthGroup::InternalChains::numInternalChains; carrierSelector->addItem("Enable All Synths", -1); diff --git a/hi_scripting/scripting/api/ScriptComponentWrappers.cpp b/hi_scripting/scripting/api/ScriptComponentWrappers.cpp index 4822256dfd..405009fd07 100644 --- a/hi_scripting/scripting/api/ScriptComponentWrappers.cpp +++ b/hi_scripting/scripting/api/ScriptComponentWrappers.cpp @@ -1169,9 +1169,8 @@ void ScriptCreatedComponentWrappers::ComboBoxWrapper::updateFont(ScriptComponent void ScriptCreatedComponentWrappers::ComboBoxWrapper::updateItems(HiComboBox * cb) { cb->clear(dontSendNotification); - cb->rebuildPopupMenu(); - cb->addItemList(dynamic_cast(getScriptComponent())->getItemList(), 1); + cb->rebuildPopupMenu(); auto currentValue = (int)getScriptComponent()->getValue(); cb->setSelectedId(currentValue, dontSendNotification);