diff --git a/HISTORY.md b/HISTORY.md index 6ea7b739..c0bd7579 100755 --- a/HISTORY.md +++ b/HISTORY.md @@ -12,6 +12,7 @@ * gui, scenes, store: proxied thumbnail, name and notes in project, restored in XML * gui: distinguished project name from scene names, removed hidden "export as plain text" option * gui: sceneified project notes +* gui: adjusted project thumbnail in "save" dialog ### 2021-05-20 * gui: marked projectName to be refactored and sceneified diff --git a/src/gui.js b/src/gui.js index 719c8bd9..888190cd 100644 --- a/src/gui.js +++ b/src/gui.js @@ -7117,7 +7117,7 @@ ProjectDialogMorph.prototype.buildContents = function () { this.body.add(this.preview); if (this.task === 'save') { - thumbnail = this.ide.stage.thumbnail( // +++ get the project thumbnail + thumbnail = this.ide.scenes.at(1).stage.thumbnail( SnapSerializer.prototype.thumbnailSize ); this.preview.texture = null;