From a0e5770e28096f66ac16858891ca585008f826fa Mon Sep 17 00:00:00 2001 From: Peter Nelson Date: Tue, 5 Feb 2013 19:28:56 +0000 Subject: [PATCH] Allow very fine value adjustment. --- pui/pui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pui/pui.cpp b/pui/pui.cpp index 8da3331..7c9859e 100644 --- a/pui/pui.cpp +++ b/pui/pui.cpp @@ -133,7 +133,7 @@ void PUi::OnScroll(float dx, float dy) if (this->active) { dy *= .1f; if (this->mm & 1) dy *= .1f; - if (this->mm & 2) dy *= .01f; + if (this->mm & 2) dy *= .001f; float value = this->active->value + dy; if (this->active->SetValue(value)) { this->ParameterChanged(this->active);