From 7af5ab575deb0e2c97651aa3dc2181d487f69dc1 Mon Sep 17 00:00:00 2001 From: jmoenig Date: Thu, 20 Jun 2013 13:24:15 +0200 Subject: "flat" design enhancements for blocks and watchers --- lists.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lists.js') diff --git a/lists.js b/lists.js index ac85b25..e70c385 100644 --- a/lists.js +++ b/lists.js @@ -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( -- cgit v1.3.1