From b083f766087b4ec194b77d3e45abc32e410c35a2 Mon Sep 17 00:00:00 2001 From: Gabriel Bolbotina Date: Fri, 20 Feb 2026 13:13:57 +0200 Subject: [PATCH] Added fix for the android predictive text input --- app/qml/components/private/MMBaseSingleLineInput.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/qml/components/private/MMBaseSingleLineInput.qml b/app/qml/components/private/MMBaseSingleLineInput.qml index b1f818e67..db7cccd3c 100644 --- a/app/qml/components/private/MMBaseSingleLineInput.qml +++ b/app/qml/components/private/MMBaseSingleLineInput.qml @@ -169,6 +169,8 @@ MMBaseInput { onTextEdited: root.textEdited( text ) + onPreeditTextChanged: if( __androidUtils.isAndroid ) Qt.inputMethod.commit() // to avoid Android's unconfirmed text + onReleased: { if ( root.editState !== "readOnly" ) { root.textClicked()