diff options
| author | jmoenig <jens@moenig.org> | 2014-12-06 11:36:35 +0100 |
|---|---|---|
| committer | jmoenig <jens@moenig.org> | 2014-12-06 11:36:35 +0100 |
| commit | 8338384bf572beb06ebd12a0c9af18029e99262a (patch) | |
| tree | 8e9175730d10b7e1b192fc8a7c3f2b9621fa63ea | |
| parent | 6608d1098ffe6d6b5f23ba85ea842754724ec277 (diff) | |
| download | snap-8338384bf572beb06ebd12a0c9af18029e99262a.tar.gz snap-8338384bf572beb06ebd12a0c9af18029e99262a.zip | |
Fixed #668
| -rwxr-xr-x | history.txt | 4 | ||||
| -rw-r--r-- | store.js | 6 |
2 files changed, 9 insertions, 1 deletions
diff --git a/history.txt b/history.txt index f1baa92..ff38bfb 100755 --- a/history.txt +++ b/history.txt @@ -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 @@ -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(); |
