pull/3/merge
jmoenig 2014-12-06 11:36:35 +01:00
rodzic 6608d1098f
commit 8338384bf5
2 zmienionych plików z 9 dodań i 1 usunięć

Wyświetl plik

@ -2386,3 +2386,7 @@ ______
141205
------
* Morphic: Avoid auto-scaling artefacts in Safari on retina displays (resulting in “traces” when dragging items)
141206
------
* Store: Fixed #668

Wyświetl plik

@ -61,7 +61,7 @@ SyntaxElementMorph, Variable*/
// Global stuff ////////////////////////////////////////////////////////
modules.store = '2014-November-24';
modules.store = '2014-December-06';
// XML_Serializer ///////////////////////////////////////////////////////
@ -1201,6 +1201,10 @@ SnapSerializer.prototype.loadValue = function (model) {
if (el) {
v.outerContext = this.loadValue(el);
}
if (v.outerContext && v.receiver &&
!v.outerContext.variables.parentFrame) {
v.outerContext.variables.parentFrame = v.receiver.variables;
}
return v;
case 'costume':
center = new Point();