Blame SOURCES/0024-Set-preedit-cursor-when-cursor-equals-to-0.patch

869fe3
From 5ea11ccde21448f5c61978bf52e2f3db79a7143c Mon Sep 17 00:00:00 2001
9fb289
From: Weng Xuetian <wengxt@gmail.com>
9fb289
Date: Sat, 18 Dec 2021 23:42:49 -0800
869fe3
Subject: [PATCH 24/40] Set preedit cursor when cursor equals to 0
9fb289
9fb289
Pick-to: 6.3 6.2 5.15
9fb289
Change-Id: I832fbb22d973b36ac4ab51570fc53bc2e4c3ed58
9fb289
Reviewed-by: Liang Qi <liang.qi@qt.io>
9fb289
(cherry picked from commit 719a55be13bdadfa659a732755f280e276a894bd)
9fb289
---
9fb289
 src/shared/qwaylandinputmethodeventbuilder.cpp | 2 +-
9fb289
 1 file changed, 1 insertion(+), 1 deletion(-)
9fb289
9fb289
diff --git a/src/shared/qwaylandinputmethodeventbuilder.cpp b/src/shared/qwaylandinputmethodeventbuilder.cpp
9fb289
index 526d0ef4..25be2509 100644
9fb289
--- a/src/shared/qwaylandinputmethodeventbuilder.cpp
9fb289
+++ b/src/shared/qwaylandinputmethodeventbuilder.cpp
9fb289
@@ -151,7 +151,7 @@ QInputMethodEvent QWaylandInputMethodEventBuilder::buildPreedit(const QString &t
9fb289
 {
9fb289
     QList<QInputMethodEvent::Attribute> attributes;
9fb289
 
9fb289
-    if (m_preeditCursor < 0) {
9fb289
+    if (m_preeditCursor <= 0) {
9fb289
         attributes.append(QInputMethodEvent::Attribute(QInputMethodEvent::Cursor, 0, 0, QVariant()));
9fb289
     } else if (m_preeditCursor > 0) {
9fb289
         attributes.append(QInputMethodEvent::Attribute(QInputMethodEvent::Cursor, indexFromWayland(text, m_preeditCursor), 1, QVariant()));
9fb289
-- 
9fb289
2.35.1
9fb289