gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

commit 3f49b7901dc3f831b46eda08a7c951713e573351
parent 3785beee333f83380ae67769a8b411cfae5edd61
Author: trancy <63122430+trancy2k5@users.noreply.github.com>
Date:   Wed, 19 Jan 2022 00:09:18 +0100

Merge branch 'dsp56300:dsp56300_ui' into dsp56300_ui

Diffstat:
Mdoc/changelog.txt | 4++++
Msource/jucePlugin/ui/Virus_Buttons.cpp | 5++++-
2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/doc/changelog.txt b/doc/changelog.txt @@ -1,5 +1,9 @@ Release Notes +1.2.4c (2022.01.18): + +- [Fix] Freezing of plugins for some seconds because DSP skipped processing peripheral devices in certain circumstances + 1.2.4b (2022.01.18): - [Fix] Possible crash at startup diff --git a/source/jucePlugin/ui/Virus_Buttons.cpp b/source/jucePlugin/ui/Virus_Buttons.cpp @@ -108,8 +108,11 @@ namespace Buttons { auto on = Drawable::createFromImageData(BinaryData::part_select_btn_36x36_png, BinaryData::part_select_btn_36x36_pngSize); + + const auto empty = new DrawableText(); + setColour(DrawableButton::ColourIds::backgroundColourId, Colours::transparentBlack); setColour(DrawableButton::ColourIds::backgroundOnColourId, Colours::transparentBlack); - setImages(on.get(), nullptr, on.get(), nullptr, on.get(), nullptr, nullptr); + setImages(empty, nullptr, on.get(), nullptr, on.get(), nullptr, nullptr); } }; // namespace Buttons