diff options
author | Alex Yatskov <FooSoft@users.noreply.github.com> | 2019-10-05 19:48:21 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-05 19:48:21 -0700 |
commit | a4d2bde5dfbe17c03e5aede38ccd4b27753aef48 (patch) | |
tree | 7f60cf5f6004145496351139e42d4b5c71cfbb5a /ext/fg/js/popup-proxy.js | |
parent | bac237336e4578e339069a8d9d8f83703a3cee5d (diff) | |
parent | 113cc725c1764e5eb814a22ace23a7e7150d016f (diff) |
Merge pull request #240 from toasted-nutbread/fix-focus
Fix focus
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) { |