From c399e8ef6c2f8863b53cbd9393d17661eec8c159 Mon Sep 17 00:00:00 2001 From: jatin Date: Wed, 7 Feb 2024 15:53:13 -0800 Subject: [PATCH] Fixing EQ spectrum visualizer enable/disable --- src/gui/EQ/EQPlot.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gui/EQ/EQPlot.cpp b/src/gui/EQ/EQPlot.cpp index 1a41b3c..216816f 100644 --- a/src/gui/EQ/EQPlot.cpp +++ b/src/gui/EQ/EQPlot.cpp @@ -282,8 +282,9 @@ void EQPlot::resized() optItersLabel.setBounds (0, 0, 1000, 100); } -void EQPlot::mouseDown (const juce::MouseEvent&) +void EQPlot::mouseDown (const juce::MouseEvent& e) { setSelectedBand (-1); + getParentComponent()->mouseDown (e); } } // namespace gui::eq