diff options
Diffstat (limited to '')
-rw-r--r-- | extensions/45/vertical-workspaces/lib/searchController.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/extensions/45/vertical-workspaces/lib/searchController.js b/extensions/45/vertical-workspaces/lib/searchController.js index e69bc90..1722f15 100644 --- a/extensions/45/vertical-workspaces/lib/searchController.js +++ b/extensions/45/vertical-workspaces/lib/searchController.js @@ -3,7 +3,7 @@ * searchController.js * * @author GdH <G-dH@github.com> - * @copyright 2022 - 2023 + * @copyright 2022 - 2024 * @license GPL-3.0 * */ @@ -51,15 +51,15 @@ export const SearchControllerModule = class { _activateModule() { if (!this._originalOnStageKeyPress) - this._originalOnStageKeyPress = Main.overview._overview.controls._searchController._onStageKeyPress; + this._originalOnStageKeyPress = Main.overview.searchController._onStageKeyPress; - Main.overview._overview.controls._searchController._onStageKeyPress = SearchControllerCommon._onStageKeyPress; + Main.overview.searchController._onStageKeyPress = SearchControllerCommon._onStageKeyPress; console.debug(' SearchControllerModule - Activated'); } _disableModule() { if (this._originalOnStageKeyPress) - Main.overview._overview.controls._searchController._onStageKeyPress = this._originalOnStageKeyPress; + Main.overview.searchController._onStageKeyPress = this._originalOnStageKeyPress; this._originalOnStageKeyPress = null; console.debug(' SearchControlerModule - Disabled'); |