wooify
Michael Aschauer 2017-10-15 07:26:36 +02:00
rodzic d91aa4a377
commit d8e0216719
1 zmienionych plików z 5 dodań i 4 usunięć

Wyświetl plik

@ -670,7 +670,7 @@ IDE_Morph.prototype.createStatusDisplay = function () {
space.newLines = 0.5;
elements.push(space);
elements.push(' Total Stitches : ');
elements.push(' Stitches : ');
element = new StringMorph();
element.update = function () {
this.text = (stage.turtleShepherd.getStepCount()).toString()+ " ";
@ -689,7 +689,7 @@ IDE_Morph.prototype.createStatusDisplay = function () {
element.newColumn = 2;
elements.push(element);
elements.push('Dimensions : ');
elements.push('Size : ');
element = new StringMorph();
element.update = function () {
this.text = (stage.turtleShepherd.getDimensions());
@ -879,7 +879,7 @@ IDE_Morph.prototype.createStatusDisplay = function () {
uploadOrderButton.newLines = 2.7;
elements.push(uploadOrderButton);
/*
elements.push(' RENDERER: ');
element = new StringMorph();
element.update = function () {
@ -887,7 +887,8 @@ IDE_Morph.prototype.createStatusDisplay = function () {
};
elements.push(element);
elements.push(' ');
*/
elements.forEach(function(each) { myself.statusDisplay.addElement(each); });
};