diff options
Diffstat (limited to 'ext/js/display/display-profile-selection.js')
| -rw-r--r-- | ext/js/display/display-profile-selection.js | 7 | 
1 files changed, 3 insertions, 4 deletions
diff --git a/ext/js/display/display-profile-selection.js b/ext/js/display/display-profile-selection.js index b61b49d5..3df79b74 100644 --- a/ext/js/display/display-profile-selection.js +++ b/ext/js/display/display-profile-selection.js @@ -20,7 +20,6 @@ import {EventListenerCollection} from '../core/event-listener-collection.js';  import {generateId} from '../core/utilities.js';  import {PanelElement} from '../dom/panel-element.js';  import {querySelectorNotNull} from '../dom/query-selector.js'; -import {yomitan} from '../yomitan.js';  export class DisplayProfileSelection {      /** @@ -50,7 +49,7 @@ export class DisplayProfileSelection {      /** */      async prepare() { -        yomitan.on('optionsUpdated', this._onOptionsUpdated.bind(this)); +        this._display.application.on('optionsUpdated', this._onOptionsUpdated.bind(this));          this._profileButton.addEventListener('click', this._onProfileButtonClick.bind(this), false);          this._profileListNeedsUpdate = true;      } @@ -92,7 +91,7 @@ export class DisplayProfileSelection {      /** */      async _updateProfileList() {          this._profileListNeedsUpdate = false; -        const options = await yomitan.api.optionsGetFull(); +        const options = await this._display.application.api.optionsGetFull();          this._eventListeners.removeAllEventListeners();          const displayGenerator = this._display.displayGenerator; @@ -138,7 +137,7 @@ export class DisplayProfileSelection {              scope: 'global',              optionsContext: null          }; -        await yomitan.api.modifySettings([modification], this._source); +        await this._display.application.api.modifySettings([modification], this._source);          this._setProfilePanelVisible(false);      }  }  |