diff options
author | Nivesh Rajbhandari | 2012-08-15 12:21:20 -0700 |
---|---|---|
committer | Nivesh Rajbhandari | 2012-08-15 12:21:20 -0700 |
commit | c88752d621069b12f978c1fd88ffdd52537a4657 (patch) | |
tree | f1fa9b705e323485e31858c2696ecf9c9604fde6 /js/data | |
parent | 0674dfbd067403fb7a8534e43985e41ec224c681 (diff) | |
download | ninja-c88752d621069b12f978c1fd88ffdd52537a4657.tar.gz |
Allow rectangle and oval shapes to be created with 0 px stroke size. Line shapes' stroke size will still be restricted to a minimum of 1 px.v0.7.2
Signed-off-by: Nivesh Rajbhandari <mqg734@motorola.com>
Diffstat (limited to 'js/data')
-rwxr-xr-x | js/data/pi/pi-data.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/data/pi/pi-data.js b/js/data/pi/pi-data.js index f36f11e6..489938d5 100755 --- a/js/data/pi/pi-data.js +++ b/js/data/pi/pi-data.js | |||
@@ -499,7 +499,7 @@ exports.PiData = Montage.create( Montage, { | |||
499 | prop : "strokeSize", | 499 | prop : "strokeSize", |
500 | label : "Stroke", | 500 | label : "Stroke", |
501 | inputFunction: parseFloat, | 501 | inputFunction: parseFloat, |
502 | min : 0, | 502 | min : 1, |
503 | max : 100, | 503 | max : 100, |
504 | value : 1, | 504 | value : 1, |
505 | unit : "px", | 505 | unit : "px", |