From ff09c4efc14be9c25ade570799cc917508a39bca Mon Sep 17 00:00:00 2001 From: Carlos Garnacho Date: Mon, 17 Oct 2022 13:30:40 +0200 Subject: [PATCH] inputMethod: Cache cursor rectangle This may need to be synchronized in other places, so keep the rectangle around. Part-of: --- js/misc/inputMethod.js | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/js/misc/inputMethod.js b/js/misc/inputMethod.js index 3ee96a7fa..d9335cc81 100644 --- a/js/misc/inputMethod.js +++ b/js/misc/inputMethod.js @@ -217,8 +217,13 @@ var InputMethod = GObject.registerClass({ vfunc_set_cursor_location(rect) { if (this._context) { - this._context.set_cursor_location(rect.get_x(), rect.get_y(), - rect.get_width(), rect.get_height()); + this._cursorRect = { + x: rect.get_x(), y: rect.get_y(), + width: rect.get_width(), height: rect.get_height(), + }; + this._context.set_cursor_location( + this._cursorRect.x, this._cursorRect.y, + this._cursorRect.width, this._cursorRect.height); this._emitRequestSurrounding(); } }