Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
6.6.1, 6.7.0 Beta1
-
None
-
-
2024wk12FOQtforAndroid, 2024wk14FOQtforAndroid, 2024wk16FOQtforAndroid
Description
MacOS 14.2.1
Qt Creator 12.0.1
Qt 6.7.0-beta1
Device: Samsung Galaxy S22 13.0, Pixel 3a 12.0
Steps to reproduce:
- Run the attached sample code on the Android device
- Long press on the text to open the selection handles toolbar
- When it appears try to close it by tapping outside of the toolbar.
Expected: The toolbar should disappear when the user taps outside of it.
Actual: The toolbar does not disappear and it's difficult to close it. It does not happen with TextArea.
Reproducibility: 100%
Code:
import QtQuick import QtQuick.ControlsWindow { width: 640 height: 480 visible: true title: qsTr("Hello World") TextInput { id: textInput focus: true text: "TextInput" } TextField { text: "TextField" id: textField anchors.top: textInput.bottom anchors.topMargin: 10 } TextArea { text: "TextArea" anchors.top: textField.bottom anchors.topMargin: 10 } }
Attachments
Issue Links
- relates to
-
QTBUG-111504 Text loses selection when releasing long-press on Android text input
- Closed
-
QTQAINFRA-6104 Qt Test Attack - Q1, 2024
- Open