commit | fcf89db1874bdeb4732b7e8cd0d8a1cf0a62a933 | [log] [tgz] |
---|---|---|
author | Akron <nils@diewald-online.de> | Thu Oct 01 17:40:20 2020 +0200 |
committer | Akron <nils@diewald-online.de> | Thu Oct 01 17:40:20 2020 +0200 |
tree | 23ded087a18ec660a8774dbf88c0f58a7154290e | |
parent | 38ed5dc6c1e6745a56c3de01f94bd8fcb54d554e [diff] [blame] |
Fix 'setWidget' action for the case a widget was closed instead of minimized Change-Id: I74339e444fcca43aee3c694c2a24fe7e68980d81
diff --git a/dev/js/src/plugin/widget.js b/dev/js/src/plugin/widget.js index 25bc6cc..a845ebc 100644 --- a/dev/js/src/plugin/widget.js +++ b/dev/js/src/plugin/widget.js
@@ -65,7 +65,7 @@ // On closing the widget view onClose : function () { if (this._mgr) { - this._mgr._closeService(this._id); + this._mgr._closeService(this.id); this._mgr = undefined; }; }