From 2000954ad23fc4b7eb415995ba112e81e9f1c767 Mon Sep 17 00:00:00 2001 From: Thijs Wenker Date: Mon, 10 Sep 2018 20:13:06 +0200 Subject: [PATCH] Temporary fix for reload crash MS18269 --- scripts/system/modules/createWindow.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/system/modules/createWindow.js b/scripts/system/modules/createWindow.js index 7369cf91f8..0c4412abfb 100644 --- a/scripts/system/modules/createWindow.js +++ b/scripts/system/modules/createWindow.js @@ -125,6 +125,9 @@ module.exports = (function() { Script.scriptEnding.connect(this, function() { this.window.close(); + // FIXME: temp solution for reload crash (MS18269), + // we should decide on proper object ownership strategy for InteractiveWindow API + this.window = null; }); }, setVisible: function(visible) {