fixed a glitch when loading method blocks stored in sprite-local vars

upd4.1
Jens Mönig 2017-10-28 09:19:30 +02:00
rodzic 859c0f9b92
commit 09adf1f2c0
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -61,7 +61,7 @@ normalizeCanvas, contains*/
// Global stuff ////////////////////////////////////////////////////////
modules.store = '2017-October-04';
modules.store = '2017-October-28';
// XML_Serializer ///////////////////////////////////////////////////////
@ -1367,7 +1367,7 @@ SnapSerializer.prototype.loadValue = function (model, object) {
el = model.childNamed('block') ||
model.childNamed('custom-block');
if (el) {
v.expression = this.loadBlock(el, origin);
v.expression = this.loadBlock(el, null, origin);
} else {
el = model.childNamed('l');
if (el) {