diff options
Diffstat (limited to 'ext/js/display/display-profile-selection.js')
-rw-r--r-- | ext/js/display/display-profile-selection.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ext/js/display/display-profile-selection.js b/ext/js/display/display-profile-selection.js index 0a44392e..d858da28 100644 --- a/ext/js/display/display-profile-selection.js +++ b/ext/js/display/display-profile-selection.js @@ -17,7 +17,6 @@ /* global * PanelElement - * api */ class DisplayProfileSelection { @@ -67,7 +66,7 @@ class DisplayProfileSelection { async _updateProfileList() { this._profileListNeedsUpdate = false; - const options = await api.optionsGetFull(); + const options = await yomichan.api.optionsGetFull(); this._eventListeners.removeAllEventListeners(); const displayGenerator = this._display.displayGenerator; @@ -95,7 +94,7 @@ class DisplayProfileSelection { } async _setProfileCurrent(index) { - await api.modifySettings([{ + await yomichan.api.modifySettings([{ action: 'set', path: 'profileCurrent', value: index, |