From c4a487bf96197c9db433e9f0f0c784ee6f9ad56d Mon Sep 17 00:00:00 2001 From: Peng Wu Date: Tue, 4 Mar 2025 12:55:26 +0800 Subject: [PATCH] ibusCandidatePopup: Fix set-cursor-location-relative signal handling Fixes: 6982f2daae ("ibus-candidate-popup: Scale coordinates from IBus") Closes: https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/8228 Part-of: --- js/ui/ibusCandidatePopup.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/ui/ibusCandidatePopup.js b/js/ui/ibusCandidatePopup.js index 47926a292..9af7d9416 100644 --- a/js/ui/ibusCandidatePopup.js +++ b/js/ui/ibusCandidatePopup.js @@ -225,8 +225,8 @@ class IbusCandidatePopup extends BoxPointer.BoxPointer { this._setDummyCursorGeometry( windowActor.x + rect.x, windowActor.y + rect.y, - rect.w, - rect.h); + rect.width, + rect.height); }); } catch (e) { // Only recent IBus versions have support for this signal