computerscare-vcv-modules

computerscare modules for VCV Rack
Log | Files | Refs

commit f4bc1438204a1ef2480b7793fbcb10384d851505
parent 40219f9d8154132113ac0277d72e6b421b24cc62
Author: Adam M <[email protected]>
Date:   Wed, 10 Jul 2019 22:00:49 -0500

get rid of shadow in three vertical shit switch

Diffstat:
Msrc/Computerscare.hpp | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/src/Computerscare.hpp b/src/Computerscare.hpp @@ -97,6 +97,10 @@ struct ComputerscareIsoThree : app::SvgSwitch { }; struct ThreeVerticalXSwitch : app::SvgSwitch { ThreeVerticalXSwitch() { + fb = new widget::FramebufferWidget; + addChild(fb); + sw = new widget::SvgWidget; + fb->addChild(sw); addFrame(APP->window->loadSvg(asset::plugin(pluginInstance, "res/vertical-x-1.svg"))); addFrame(APP->window->loadSvg(asset::plugin(pluginInstance, "res/vertical-x-2.svg"))); addFrame(APP->window->loadSvg(asset::plugin(pluginInstance, "res/vertical-x-3.svg")));