We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In TTRangeSlider.m, line 315, you have:
if (self.enableStep && self.step>=0.0f){ _selectedMinimum = roundf(self.selectedMinimum/self.step)_self.step; _selectedMaximum = roundf(self.selectedMaximum/self.step)_self.step; }
If self.step == 0.0, then there is a divide by zero setting selectMinimum and selectMaximum to NaN. Hope this helped.
The text was updated successfully, but these errors were encountered:
Issue TomThorpe#45 :
d8c1d88
a) fixing issue 'divide by zero' b) added setters for enableStep & step c) refresh procedure is calling after values updated
No branches or pull requests
In TTRangeSlider.m, line 315, you have:
if (self.enableStep && self.step>=0.0f){
_selectedMinimum = roundf(self.selectedMinimum/self.step)_self.step;
_selectedMaximum = roundf(self.selectedMaximum/self.step)_self.step;
}
If self.step == 0.0, then there is a divide by zero setting selectMinimum and selectMaximum to NaN.
Hope this helped.
The text was updated successfully, but these errors were encountered: