diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-10-05 21:38:13 -0400 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-10-05 21:40:10 -0400 |
commit | 2255fadf52bff17d183f48e0bc72a078568481f2 (patch) | |
tree | fd462850b429722b969dbd255555ff3db3b9ebce /ext/fg/js/popup-proxy.js | |
parent | bac237336e4578e339069a8d9d8f83703a3cee5d (diff) |
Rename Popup.setVisible to setVisibleOverride
Diffstat (limited to 'ext/fg/js/popup-proxy.js')
-rw-r--r-- | ext/fg/js/popup-proxy.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/fg/js/popup-proxy.js b/ext/fg/js/popup-proxy.js index 072cebc9..99b28549 100644 --- a/ext/fg/js/popup-proxy.js +++ b/ext/fg/js/popup-proxy.js @@ -65,9 +65,9 @@ class PopupProxy { return await this.invokeHostApi('hide', {id: this.id, changeFocus}); } - async setVisible(visible) { + async setVisibleOverride(visible) { const id = await this.getPopupId(); - return await this.invokeHostApi('setVisible', {id, visible}); + return await this.invokeHostApi('setVisibleOverride', {id, visible}); } async containsPoint(x, y) { |