From ef170e9a2850af90e97118c39812015204bbcdb3 Mon Sep 17 00:00:00 2001 From: jmoenig Date: Fri, 22 Mar 2013 10:36:19 +0100 Subject: Zoom Blocks in the settings menu. also: Optional slider for numeric prompter, numberic prompters for watchers' sliderMin/Max --- objects.js | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'objects.js') diff --git a/objects.js b/objects.js index 546106e..e7cf9cd 100644 --- a/objects.js +++ b/objects.js @@ -120,7 +120,7 @@ PrototypeHatBlockMorph*/ // Global stuff //////////////////////////////////////////////////////// -modules.objects = '2013-March-12'; +modules.objects = '2013-March-22'; var SpriteMorph; var StageMorph; @@ -5453,7 +5453,11 @@ WatcherMorph.prototype.userSetSliderMin = function () { ).prompt( "Slider minimum value", this.sliderMorph.start.toString(), - this.world() + this.world(), + null, // pic + null, // choices + null, // read only + true // numeric ); }; @@ -5465,7 +5469,11 @@ WatcherMorph.prototype.userSetSliderMax = function () { ).prompt( "Slider maximum value", this.sliderMorph.stop.toString(), - this.world() + this.world(), + null, // pic + null, // choices + null, // read only + true // numeric ); }; -- cgit v1.3.1