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 abf995349bb45b643342a11911e789b7b8086de1
parent 40642c9e1e95025e05e9cc3d72c2061997b8e35e
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Tue, 18 Jan 2022 19:54:22 +0100

fix assert: part select button didn't have a "normal" image

Diffstat:
Msource/jucePlugin/ui/Virus_Buttons.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/source/jucePlugin/ui/Virus_Buttons.cpp b/source/jucePlugin/ui/Virus_Buttons.cpp @@ -110,6 +110,6 @@ namespace Buttons Drawable::createFromImageData(BinaryData::part_select_btn_36x36_png, BinaryData::part_select_btn_36x36_pngSize); setColour(DrawableButton::ColourIds::backgroundColourId, Colours::transparentBlack); setColour(DrawableButton::ColourIds::backgroundOnColourId, Colours::transparentBlack); - setImages(nullptr, nullptr, on.get(), nullptr, on.get(), nullptr, nullptr); + setImages(on.get(), nullptr, on.get(), nullptr, on.get(), nullptr, nullptr); } }; // namespace Buttons