Hello everyone,
is there a way to make it possible to enter float numbers in the textbox of a slider using a , (comma) and not a .(dot)?
Best,
Thomas
Hello everyone,
is there a way to make it possible to enter float numbers in the textbox of a slider using a , (comma) and not a .(dot)?
Best,
Thomas
You can subclass the Slider class and override the following method:
virtual double getValueFromText (const String& text);
This way you can add the support yourselves, we went even further by allowing users to type in Expressions. Look at the juce_Expression class.
Thanks Rebbur. That was it.