Fix undefined id

This commit is contained in:
toasted-nutbread 2020-02-11 22:21:55 -05:00
parent 9c5ad3ea67
commit 65dfb855fb

View File

@ -69,7 +69,7 @@ class PopupProxy {
if (this._id === null) { if (this._id === null) {
return; return;
} }
this._invokeHostApi('setVisibleOverride', {id, visible}); this._invokeHostApi('setVisibleOverride', {id: this._id, visible});
} }
async containsPoint(x, y) { async containsPoint(x, y) {