From e826bb7147488ead852adc4b37c8076800a5cd7b Mon Sep 17 00:00:00 2001 From: falkTX Date: Sun, 17 Aug 2014 01:15:30 +0100 Subject: [PATCH] 3BandEQ/Splitter should have sliders inverted --- plugins/3BandEQ/DistrhoUI3BandEQ.cpp | 1 + plugins/3BandSplitter/DistrhoUI3BandSplitter.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/plugins/3BandEQ/DistrhoUI3BandEQ.cpp b/plugins/3BandEQ/DistrhoUI3BandEQ.cpp index d3741a7..a0e9280 100644 --- a/plugins/3BandEQ/DistrhoUI3BandEQ.cpp +++ b/plugins/3BandEQ/DistrhoUI3BandEQ.cpp @@ -42,6 +42,7 @@ DistrhoUI3BandEQ::DistrhoUI3BandEQ() // slider Low fSliderLow = new ImageSlider(this, sliderImage); fSliderLow->setId(DistrhoPlugin3BandEQ::paramLow); + fSliderLow->setInverted(true); fSliderLow->setStartPos(sliderPosStart); fSliderLow->setEndPos(sliderPosEnd); fSliderLow->setRange(-24.0f, 24.0f); diff --git a/plugins/3BandSplitter/DistrhoUI3BandSplitter.cpp b/plugins/3BandSplitter/DistrhoUI3BandSplitter.cpp index 37611e8..c6e1976 100644 --- a/plugins/3BandSplitter/DistrhoUI3BandSplitter.cpp +++ b/plugins/3BandSplitter/DistrhoUI3BandSplitter.cpp @@ -42,6 +42,7 @@ DistrhoUI3BandSplitter::DistrhoUI3BandSplitter() // slider Low fSliderLow = new ImageSlider(this, sliderImage); fSliderLow->setId(DistrhoPlugin3BandSplitter::paramLow); + fSliderLow->setInverted(true); fSliderLow->setStartPos(sliderPosStart); fSliderLow->setEndPos(sliderPosEnd); fSliderLow->setRange(-24.0f, 24.0f);