diff options
| author | jmoenig <jens@moenig.org> | 2013-06-20 13:24:15 +0200 |
|---|---|---|
| committer | jmoenig <jens@moenig.org> | 2013-06-20 13:24:15 +0200 |
| commit | 7af5ab575deb0e2c97651aa3dc2181d487f69dc1 (patch) | |
| tree | acc63687b9c2fd28a86e2aea141d0c4903b2a4af /lists.js | |
| parent | fe8cbd5b705a940c13f7caa2c0d5554341869012 (diff) | |
| download | snap-byow-7af5ab575deb0e2c97651aa3dc2181d487f69dc1.tar.gz snap-byow-7af5ab575deb0e2c97651aa3dc2181d487f69dc1.zip | |
"flat" design enhancements for blocks and watchers
Diffstat (limited to 'lists.js')
| -rw-r--r-- | lists.js | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -59,9 +59,9 @@ /*global modules, contains, BoxMorph, WorldMorph, HandleMorph, PushButtonMorph, SyntaxElementMorph, Color, Point, WatcherMorph, StringMorph, SpriteMorph, ScrollFrameMorph, CellMorph, ArrowMorph, -MenuMorph, snapEquals, Morph, isNil, localize*/ +MenuMorph, snapEquals, Morph, isNil, localize, MorphicPreferences*/ -modules.lists = '2013-April-23'; +modules.lists = '2013-June-20'; var List; var ListWatcherMorph; @@ -367,7 +367,7 @@ ListWatcherMorph.prototype.init = function (list, parentCell) { false, false, false, - new Point(1, 1), + MorphicPreferences.isFlat ? new Point() : new Point(1, 1), new Color(255, 255, 255) ); this.label.mouseClickLeft = function () {myself.startIndexMenu(); }; @@ -525,7 +525,7 @@ ListWatcherMorph.prototype.update = function (anyway) { false, false, false, - new Point(1, 1), + MorphicPreferences.isFlat ? new Point() : new Point(1, 1), new Color(255, 255, 255) ); cell = new CellMorph( |
