diff --git a/stitchcode/gui.js b/stitchcode/gui.js index 6fc9e7e5..0d2cec3e 100644 --- a/stitchcode/gui.js +++ b/stitchcode/gui.js @@ -1,5 +1,5 @@ -VERSION="2.7.4" +VERSION="2.7.5" // get debug mode url = new URL(window.location.href); diff --git a/stitchcode/turtlecloud.js b/stitchcode/turtlecloud.js index 9645a136..c96230a5 100644 --- a/stitchcode/turtlecloud.js +++ b/stitchcode/turtlecloud.js @@ -549,6 +549,12 @@ ProjectDialogMorph.prototype.buildContents = function () { }); this.originalBuildContents(); + /* + this.preview.setExtent( + new Point(320,240).add(this.preview.edge * 2) + ); + */ + this.notesField.setWidth(this.preview.width()); if (this.ide.cloudMsg) { notification = new TextMorph( @@ -567,9 +573,9 @@ ProjectDialogMorph.prototype.buildContents = function () { this.srcBar.add(notification); } if (notification) { - this.setExtent(new Point(840, 630).add(notification.extent())); + this.setExtent(new Point(840, 590).add(notification.extent())); } else { - this.setExtent(new Point(840, 630)); + this.setExtent(new Point(840, 590)); } this.fixLayout(); };