zynaddsubfx

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

commit d94160d64c7fa2724047a3a645684f9b11cfc692
parent 4946e31f7a7ee91dc23be10d00bea0bc62f521e9
Author: Christopher A. Oliver <[email protected]>
Date:   Wed,  7 Oct 2015 03:27:30 -0400

Oops.  Scale factor should default to 1.0.

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

diff --git a/src/UI/WidgetPDial.cpp b/src/UI/WidgetPDial.cpp @@ -19,7 +19,7 @@ WidgetPDial::WidgetPDial(int x, int y, int w, int h, const char *label) :Fl_Dial(x, y, w, h, label), oldvalue(0.0f), pos(false), textset(false), - value_offset(0.0), value_scale(0.0) + value_offset(0.0), value_scale(1.0) { //cout << "[" << label << "] There are now " << ++numobj << endl; Fl_Group *save = Fl_Group::current();