summaryrefslogtreecommitdiff
path: root/paint.js
diff options
context:
space:
mode:
authorMichael Ball <cycomachead@gmail.com>2014-05-03 19:15:52 -0700
committerMichael Ball <cycomachead@gmail.com>2014-05-03 19:15:52 -0700
commit01b9417b87688b591fe3df2a55ec367dd72f027d (patch)
tree9bb4d236387b631e4f1ca3fe57152f148d4c9fa4 /paint.js
parent8badce6480d434653326684a953fccc6cf03c5d8 (diff)
parentf9989ad7cfa5e27b4784d8cd464fdc7cbe289942 (diff)
downloadsnap-byow-01b9417b87688b591fe3df2a55ec367dd72f027d.tar.gz
snap-byow-01b9417b87688b591fe3df2a55ec367dd72f027d.zip
Merge pull request #31 from jmoenig/master
Update CS10 Fork
Diffstat (limited to 'paint.js')
-rw-r--r--paint.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/paint.js b/paint.js
index e3a01af..ee40b23 100644
--- a/paint.js
+++ b/paint.js
@@ -52,6 +52,7 @@
September 16 - flood fill freeze fix (Kartik)
Jan 08 - mouse leave dragging fix (Kartik)
Feb 11 - dynamically adjust to stage dimensions (Jens)
+ Apr 30 - localizations (Manuel)
*/
@@ -65,7 +66,7 @@
// Global stuff ////////////////////////////////////////////////////////
-modules.paint = '2014-February-11';
+modules.paint = '2014-May-02';
// Declarations
@@ -372,7 +373,7 @@ PaintEditorMorph.prototype.populatePropertiesMenu = function () {
c.add(pc.colorpicker);
//c.add(pc.primaryColorButton);
c.add(pc.primaryColorViewer);
- c.add(new TextMorph("Brush size"));
+ c.add(new TextMorph(localize("Brush size")));
c.add(alpen);
c.add(pc.constrain);
};