commit 98c619bc8bfabfbddb1ccbc7371e8a01f98c0fa8
parent 11317776492c3748d205e664e210152001661163
Author: Adam M <[email protected]>
Date: Sat, 16 Oct 2021 09:46:12 -0500
knolypobs remove randomize overrides
Diffstat:
1 file changed, 0 insertions(+), 7 deletions(-)
diff --git a/src/ComputerscareKnolyPobs.cpp b/src/ComputerscareKnolyPobs.cpp
@@ -64,9 +64,6 @@ struct NoRandomSmallKnob : SmallKnob {
NoRandomSmallKnob() {
SmallKnob();
};
- void randomize() override {
- return;
- }
};
struct NoRandomMediumSmallKnob : RoundKnob {
std::shared_ptr<Svg> enabledSvg = APP->window->loadSvg(asset::plugin(pluginInstance, "res/computerscare-medium-small-knob.svg"));
@@ -75,9 +72,6 @@ struct NoRandomMediumSmallKnob : RoundKnob {
setSvg(enabledSvg);
RoundKnob();
};
- void randomize() override {
- return;
- }
};
struct DisableableSmoothKnob : RoundKnob {
@@ -99,7 +93,6 @@ struct DisableableSmoothKnob : RoundKnob {
bool candidate = channel > module->polyChannels - 1;
if (disabled != candidate) {
setSvg(candidate ? disabledSvg : enabledSvg);
- dirtyValue = -20.f;
disabled = candidate;
}
}