diff --git a/src/Core/AudioInterface.cpp b/src/Core/AudioInterface.cpp index 9034e190..b9b106f6 100644 --- a/src/Core/AudioInterface.cpp +++ b/src/Core/AudioInterface.cpp @@ -278,6 +278,11 @@ struct AudioInterfaceWidget : ModuleWidget { audioWidget->audioIO = &module->audioIO; addChild(audioWidget); } + + void draw(NVGcontext *vg) override { + // HACK Bypass ModuleWidget::draw() as it currently only contains scissoring and power meters. This effectively disables drawing the power meter. + Widget::draw(vg); + } }; diff --git a/src/app/ModuleWidget.cpp b/src/app/ModuleWidget.cpp index 2f81c844..96fedf49 100644 --- a/src/app/ModuleWidget.cpp +++ b/src/app/ModuleWidget.cpp @@ -295,7 +295,7 @@ void ModuleWidget::draw(NVGcontext *vg) { nvgScissor(vg, 0, 0, box.size.x, box.size.y); Widget::draw(vg); - // CPU meter + // Power meter if (module && gPowerMeter) { nvgBeginPath(vg); nvgRect(vg,