-
Bug
-
Resolution: Done
-
P2: Important
-
5.4.0 RC
-
Android
-
-
19159469400ed6daa8bba1020eaaf149a16f1f18
Test case:
ColumnLayout {
TextField { text: "Hello" }
TextField { text: "World" }
}
Steps:
- press and hold "Hello" so it gets selected
Expected output:
- text selection handles are above the second TextField
Actual output:
- text selection handles are below the second TextField
Workaround:
ColumnLayout {
TextField { z: 1; text: "Hello" }
TextField { text: "World" }
}
The text selection handles should be reparented to the window content item. NOTE: TextField and TextArea must track their own global scene position (eg. TextField in a Flickable) in order to keep the floating handle popups in correct places.
- relates to
-
QTBUG-43538 QtWebView doesn't respect parent x and y position
-
- Closed
-