| 264 | } |
| 265 | |
| 266 | void appendContextMenu(Menu* menu) override { |
| 267 | SamplingModulator* module = dynamic_cast<SamplingModulator*>(this->module); |
| 268 | assert(module); |
| 269 | |
| 270 | menu->addChild(new MenuSeparator()); |
| 271 | menu->addChild(createBoolPtrMenuItem("Remove DC Offset", "", &module->removeDC)); |
| 272 | } |
| 273 | }; |
| 274 | |
| 275 |
nothing calls this directly
no outgoing calls
no test coverage detected