mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-24 06:52:40 -05:00
No more xml differentiation for 'scratch' type of comments.
This commit is contained in:
parent
f079eb4bbd
commit
acd728dc2b
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ class Comment {
|
|||
}
|
||||
|
||||
toXML () {
|
||||
return `<comment type="scratch" id="${this.id}" x="${this.x}" y="${
|
||||
return `<comment id="${this.id}" x="${this.x}" y="${
|
||||
this.y}" w="${this.width}" h="${this.height}" pinned="${
|
||||
this.blockId !== null}" minimized="${this.minimized}">${this.text}</comment>`;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue