From 763baf19f032c6fbae18963402b79d5d5510d923 Mon Sep 17 00:00:00 2001 From: Pushkar Joshi Date: Thu, 7 Jun 2012 09:49:02 -0700 Subject: change the PI to make it look like the fill color affects the brush stroke color --- js/data/pi/pi-data.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'js/data/pi/pi-data.js') diff --git a/js/data/pi/pi-data.js b/js/data/pi/pi-data.js index 157cbc64..c6cbc3cf 100755 --- a/js/data/pi/pi-data.js +++ b/js/data/pi/pi-data.js @@ -703,13 +703,14 @@ exports.PiData = Montage.create( Montage, { { type : "color", prop: "border", - id : "stroke" + id : "stroke", + visible: false }, { type : "color", id : "fill", prop: "background", - visible : false, + visible : true, divider : true } ], -- cgit v1.2.3 From e3f00a9957a3446bb6b85f54f4cd06fe2fe15940 Mon Sep 17 00:00:00 2001 From: Pushkar Joshi Date: Thu, 7 Jun 2012 10:47:16 -0700 Subject: change units for smoothing and calligraphic angle in PI --- js/data/pi/pi-data.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'js/data/pi/pi-data.js') diff --git a/js/data/pi/pi-data.js b/js/data/pi/pi-data.js index c6cbc3cf..92d70141 100755 --- a/js/data/pi/pi-data.js +++ b/js/data/pi/pi-data.js @@ -762,7 +762,9 @@ exports.PiData = Montage.create( Montage, { valueMutator: parseFloat, min : 0, max : 100, - value : 0 + value : 0, + acceptableUnits: [" "], + unit: " " } ] ] @@ -789,6 +791,7 @@ exports.PiData = Montage.create( Montage, { min : -90, max : 90, value : 0, + acceptableUnits: ["deg."], unit : "deg." } ] -- cgit v1.2.3