kopia lustrzana https://github.com/backface/turtlestitch
Adjust list watcher size to blocks' zoom scale
rodzic
96b4a506ec
commit
dbce2753df
|
@ -1593,3 +1593,4 @@ ______
|
||||||
130408
|
130408
|
||||||
------
|
------
|
||||||
* Cloud, GUI: Sharing / Unsharing projects finalization
|
* Cloud, GUI: Sharing / Unsharing projects finalization
|
||||||
|
* Lists: Adjust initial list watcher size to blocks' zoom scale
|
||||||
|
|
6
lists.js
6
lists.js
|
@ -61,7 +61,7 @@ PushButtonMorph, SyntaxElementMorph, Color, Point, WatcherMorph,
|
||||||
StringMorph, SpriteMorph, ScrollFrameMorph, CellMorph, ArrowMorph,
|
StringMorph, SpriteMorph, ScrollFrameMorph, CellMorph, ArrowMorph,
|
||||||
MenuMorph, snapEquals, Morph, isNil, localize*/
|
MenuMorph, snapEquals, Morph, isNil, localize*/
|
||||||
|
|
||||||
modules.lists = '2013-March-12';
|
modules.lists = '2013-April-08';
|
||||||
|
|
||||||
var List;
|
var List;
|
||||||
var ListWatcherMorph;
|
var ListWatcherMorph;
|
||||||
|
@ -414,7 +414,9 @@ ListWatcherMorph.prototype.init = function (list) {
|
||||||
|
|
||||||
this.color = new Color(220, 220, 220);
|
this.color = new Color(220, 220, 220);
|
||||||
this.isDraggable = true;
|
this.isDraggable = true;
|
||||||
this.setExtent(new Point(80, 70));
|
this.setExtent(new Point(80, 70).multiplyBy(
|
||||||
|
SyntaxElementMorph.prototype.scale
|
||||||
|
));
|
||||||
this.add(this.label);
|
this.add(this.label);
|
||||||
this.add(this.frame);
|
this.add(this.frame);
|
||||||
this.add(this.plusButton);
|
this.add(this.plusButton);
|
||||||
|
|
Ładowanie…
Reference in New Issue