From e62eae74fd120f7fe6fd8c9be80ba9e866a0c83b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20=C3=85dahl?= Date: Fri, 25 Nov 2022 18:02:34 +0100 Subject: [PATCH] searchController: Use connectObject for the stage key focus signal This ensures it's properly disconnected on shutdown. Part-of: --- js/ui/searchController.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/ui/searchController.js b/js/ui/searchController.js index ba743a909..ef7a9d50e 100644 --- a/js/ui/searchController.js +++ b/js/ui/searchController.js @@ -68,7 +68,8 @@ var SearchController = GObject.registerClass({ this._searchResults.popupMenuDefault(); }); this._entry.connect('notify::mapped', this._onMapped.bind(this)); - global.stage.connect('notify::key-focus', this._onStageKeyFocusChanged.bind(this)); + global.stage.connectObject('notify::key-focus', + this._onStageKeyFocusChanged.bind(this), this); this._entry.set_primary_icon(new St.Icon({ style_class: 'search-entry-icon',