From ee5819f870b73125d4ab777867ab92dc04f79ce0 Mon Sep 17 00:00:00 2001 From: Sebastian Keller Date: Sat, 11 Nov 2023 22:36:02 +0100 Subject: [PATCH] searchController: Use ClutterText::cursor_position instead of position The deprecated position property has been removed in mutter commit 31849868 in favor of the otherwise identical cursor_position property. Closes: https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/7186 Part-of: --- js/ui/searchController.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/searchController.js b/js/ui/searchController.js index 25b53e6e1..53a8cb863 100644 --- a/js/ui/searchController.js +++ b/js/ui/searchController.js @@ -292,7 +292,7 @@ export const SearchController = GObject.registerClass({ } else if (symbol === Clutter.KEY_Down) { this._searchResults.navigateFocus(St.DirectionType.DOWN); return Clutter.EVENT_STOP; - } else if (symbol === arrowNext && this._text.position === -1) { + } else if (symbol === arrowNext && this._text.cursor_position === -1) { this._searchResults.navigateFocus(nextDirection); return Clutter.EVENT_STOP; } else if (symbol === Clutter.KEY_Return || symbol === Clutter.KEY_KP_Enter) {