summaryrefslogtreecommitdiffstats
path: root/extensions/46/vertical-workspaces/lib/searchController.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-14 06:16:10 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-14 06:19:57 +0000
commitc12d383974530ff928699dd98b424824bf21962d (patch)
treeb3304eeafe0342bfe58827e9507443c5dde167e0 /extensions/46/vertical-workspaces/lib/searchController.js
parentReleasing debian version 20231210-2. (diff)
downloadgnome-shell-extensions-extra-c12d383974530ff928699dd98b424824bf21962d.tar.xz
gnome-shell-extensions-extra-c12d383974530ff928699dd98b424824bf21962d.zip
Merging upstream version 20240414 (Closes: #1067433).
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--extensions/46/vertical-workspaces/lib/searchController.js (renamed from 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/46/vertical-workspaces/lib/searchController.js
index e69bc90..1722f15 100644
--- a/extensions/45/vertical-workspaces/lib/searchController.js
+++ b/extensions/46/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');