You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A large majority of platforms support floating point values, where the abstraction uses integers for the slider value. This severely limits the usefulness of sliders.
This might be this way is because of one or more platforms only supporting integer values for sliders, however that really shouldn't limit every other platform just for that, it could instead just round to nearest integer.
Code that Demonstrates the Problem
// Shortened for brevitynamespaceEto.Forms{[Handler(typeof(IHandler))]publicclassSlider:Control{publicintMaxValue{get;set;}publicintMinValue{get;set;}publicintValue{get;set;}}}
Suggested change
// Shortened for brevitynamespaceEto.Forms{[Handler(typeof(IHandler))]publicclassSlider:Control{publicdoubleMaxValue{get;set;}publicdoubleMinValue{get;set;}publicdoubleValue{get;set;}}}
Specifications
Version: 2.5.4 NuGet package
The text was updated successfully, but these errors were encountered:
A large majority of platforms support floating point values, where the abstraction uses integers for the slider value. This severely limits the usefulness of sliders.
This might be this way is because of one or more platforms only supporting integer values for sliders, however that really shouldn't limit every other platform just for that, it could instead just round to nearest integer.
Code that Demonstrates the Problem
Suggested change
Specifications
The text was updated successfully, but these errors were encountered: