mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 17:17:58 +02:00
Merge pull request #13968 from thoys/fix/create/reloadCrash
MS18269: Fix Reloading Scripts with Create open crashes system
This commit is contained in:
commit
5a1485a4f5
1 changed files with 3 additions and 0 deletions
|
@ -125,6 +125,9 @@ module.exports = (function() {
|
||||||
|
|
||||||
Script.scriptEnding.connect(this, function() {
|
Script.scriptEnding.connect(this, function() {
|
||||||
this.window.close();
|
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) {
|
setVisible: function(visible) {
|
||||||
|
|
Loading…
Reference in a new issue