commit 5c5e370d0bfeaa4f4718c3ae8a07a1596e3421f3 parent 544f663b311d1451acaf72849a48235386a1518d Author: 790 <790@users.noreply.github.com> Date: Sun, 16 Jan 2022 22:21:40 +0000 bump version Diffstat:
M | CMakeLists.txt | | | 2 | +- |
M | source/jucePlugin/VirusParameterBinding.h | | | 6 | +++--- |
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt @@ -6,7 +6,7 @@ set(CMAKE_OSX_ARCHITECTURES "arm64;x86_64") set(CMAKE_OSX_DEPLOYMENT_TARGET "10.9" CACHE STRING "Minimum OS X deployment version") -project(gearmulator VERSION 1.2.3) +project(gearmulator VERSION 1.2.4) include(base.cmake) diff --git a/source/jucePlugin/VirusParameterBinding.h b/source/jucePlugin/VirusParameterBinding.h @@ -15,9 +15,9 @@ public: } Virus::Parameter *m_param; juce::Slider* m_slider; - void VirusParameterBindingMouseListener::mouseDown(const juce::MouseEvent &event) { m_param->beginChangeGesture(); }; - void VirusParameterBindingMouseListener::mouseUp(const juce::MouseEvent &event) { m_param->endChangeGesture(); }; - void VirusParameterBindingMouseListener::mouseDrag(const juce::MouseEvent &event) { m_param->setValueNotifyingHost(m_param->convertTo0to1((float)m_slider->getValue())); }; + void mouseDown(const juce::MouseEvent &event) { m_param->beginChangeGesture(); }; + void mouseUp(const juce::MouseEvent &event) { m_param->endChangeGesture(); }; + void mouseDrag(const juce::MouseEvent &event) { m_param->setValueNotifyingHost(m_param->convertTo0to1((float)m_slider->getValue())); }; }; class VirusParameterBinding : juce::MouseListener