changed edit project notes to always edit project motes instead of scene notes

snap7
jmoenig 2021-11-09 17:04:17 +01:00
rodzic 2b403974e1
commit 3d13ee0668
2 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -55,6 +55,7 @@
* gui: changed display of project name in the IDE to PROJECT (SCENE)
* gui: adjusted random color for new sprites to HSL model
* objects: fixed keyboard entry for script variable getters
* gui: changed edit project notes to always edit project motes instead of scene notes
### 2021-11-08
* objects: renamed some internal color methods

Wyświetl plik

@ -4920,7 +4920,7 @@ IDE_Morph.prototype.scenesMenu = function () {
IDE_Morph.prototype.editNotes = function () {
var dialog = new DialogBoxMorph().withKey('notes'),
frame = new ScrollFrameMorph(),
text = new TextMorph(this.scene.notes || ''),
text = new TextMorph(this.scenes.at(1).notes || ''),
size = 250,
world = this.world();