zynaddsubfx

ZynAddSubFX open source synthesizer
Log | Files | Refs | Submodules | LICENSE

commit 88ba1d40b57e79b91c99d4eea3f4579ff45ed8f4
parent 0744bc94667248f240aaf066574526a5d344a90f
Author: Christopher A. Oliver <[email protected]>
Date:   Sun, 25 Oct 2015 11:36:35 -0400

Make slider mousewheel agree with knobs.

Diffstat:
Msrc/UI/Fl_Osc_Slider.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/UI/Fl_Osc_Slider.cpp b/src/UI/Fl_Osc_Slider.cpp @@ -106,7 +106,7 @@ int Fl_Osc_Slider::handle(int ev, int X, int Y, int W, int H) if (step < 1) step = 1; } - int dy = minimum() <= maximum() ? Fl::e_dy : -Fl::e_dy; + int dy = minimum() <= maximum() ? -Fl::e_dy : Fl::e_dy; handle_drag(clamp(value() + step * dy)); } return 1;