Somehow, stepSize went missing. Restored
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/34543167 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/34543167 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/34543167 Branch: refs/heads/develop Commit: 345431675d96b4008edbc305b986cee750e32e82 Parents: 52d4292 Author: Alex Harui <[email protected]> Authored: Wed Nov 20 23:18:18 2013 -0800 Committer: Alex Harui <[email protected]> Committed: Wed Nov 20 23:18:18 2013 -0800 ---------------------------------------------------------------------- .../src/org/apache/flex/html/staticControls/Slider.as | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/34543167/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/staticControls/Slider.as ---------------------------------------------------------------------- diff --git a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/staticControls/Slider.as b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/staticControls/Slider.as index 47a0db5..f73109d 100644 --- a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/staticControls/Slider.as +++ b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/staticControls/Slider.as @@ -73,5 +73,15 @@ package org.apache.flex.html.staticControls { IRangeModel(model).snapInterval = value; } - } + + public function get stepSize():Number + { + return IRangeModel(model).stepSize; + } + public function set stepSize(value:Number):void + { + IRangeModel(model).stepSize = value; + } + + } } \ No newline at end of file
