Details
-
Bug
-
Resolution: Done
-
P1: Critical
-
4.7.0
-
None
-
08d09e02109f18d2a22fa48f331cd7bcfacc154f
Description
When writing text in a TextInput field where the native input method pops up, the last word will be white (on white) - potentially due to the underlining that lets the user cycle between variants. The following QML code was used to reproduce the example in the attached video
import Qt 4.6 Rectangle { color: "steelblue" TextInput { x: 10; y: 10 width: parent.width height: 25 color: "black" Rectangle { z: -1 color: "white" border.color: "black" border.width: 1 anchors.fill: parent anchors.margins: -5 } } }