diff --git a/stitchcode/gui.js b/stitchcode/gui.js index 216eea47..006100fd 100644 --- a/stitchcode/gui.js +++ b/stitchcode/gui.js @@ -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); }); };