Blame SOURCES/0050-Cursor-position-0-should-still-show-the-cursor.patch

9fb289
From 157c7f55005a6ef0e65ebb02f9b5f344848670b2 Mon Sep 17 00:00:00 2001
9fb289
From: Weng Xuetian <wengxt@gmail.com>
9fb289
Date: Tue, 8 Feb 2022 07:11:25 -0800
9fb289
Subject: [PATCH 50/52] Cursor position == 0 should still show the cursor
9fb289
9fb289
Otherwise the cursor would be hidden even if preedit is empty.
9fb289
Amends 719a55be13bdadfa659a732755f280e276a894bd
9fb289
9fb289
Pick-to: 5.15 6.2 6.3
9fb289
Change-Id: I320733b917779b7b51aa4a28eaea411fdb10a318
9fb289
Reviewed-by: Liang Qi <liang.qi@qt.io>
9fb289
(cherry picked from commit 31ae194e295651d9ece03408630d2358acd4f7b4)
9fb289
---
9fb289
 src/shared/qwaylandinputmethodeventbuilder.cpp | 4 ++--
9fb289
 1 file changed, 2 insertions(+), 2 deletions(-)
9fb289
9fb289
diff --git a/src/shared/qwaylandinputmethodeventbuilder.cpp b/src/shared/qwaylandinputmethodeventbuilder.cpp
9fb289
index 25be2509..458d818e 100644
9fb289
--- a/src/shared/qwaylandinputmethodeventbuilder.cpp
9fb289
+++ b/src/shared/qwaylandinputmethodeventbuilder.cpp
9fb289
@@ -151,9 +151,9 @@ 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
+    } else {
9fb289
         attributes.append(QInputMethodEvent::Attribute(QInputMethodEvent::Cursor, indexFromWayland(text, m_preeditCursor), 1, QVariant()));
9fb289
     }
9fb289
 
9fb289
-- 
9fb289
2.35.1
9fb289