mirror of
https://github.com/scratchfoundation/scratch-flash.git
synced 2024-12-04 21:21:06 -05:00
Fixed setting slider min/max not triggering autosave
This commit is contained in:
parent
5132c96eb2
commit
8bb372c3fb
1 changed files with 1 additions and 0 deletions
|
@ -392,6 +392,7 @@ public class Watcher extends Sprite implements DragClient {
|
|||
sliderMax = Math.max(minVal, maxVal);
|
||||
isDiscrete = (min.indexOf('.') < 0) && (max.indexOf('.') < 0);
|
||||
setSliderValue(sliderMin);
|
||||
Scratch.app.setSaveNeeded();
|
||||
}
|
||||
var d:DialogBox = new DialogBox(setMinMax);
|
||||
d.addTitle('Slider Range');
|
||||
|
|
Loading…
Reference in a new issue