suggest a fix for precision on knob dragging (#3075)

* fixes precision on knob dragging

* fixes precision on fader dragging

* diaplay a rounded float on knobs

* enter rounded value on fader

* add getRoundedValue() and getDigitCount() to floatmodel

* whitespace
This commit is contained in:
Steffen Baranowsky
2017-01-12 15:02:54 +01:00
committed by GitHub
parent 7e8513235c
commit 7cf6150e75
4 changed files with 40 additions and 18 deletions

View File

@@ -406,7 +406,8 @@ public:
AutomatableModel( Float, val, min, max, step, parent, displayName, defaultConstructed )
{
}
float getRoundedValue() const;
float getDigitCount();
defaultTypedMethods(float);
} ;