-
Bug
-
Resolution: Cannot Reproduce
-
P2: Important
-
5.0.0
-
None
Run the code below. Press the mouse button and note that the TextInput's
text is drawn with less character spacing than the Text element's text.
import QtQuick 2.0 Rectangle { width: 400; height: 200 Text { anchors.centerIn: parent text: "Press the mouse button and see the text move" visible: !mouseArea.pressed } TextInput { anchors.centerIn: parent text: "Press the mouse button and see the text move" visible: mouseArea.pressed } MouseArea { id: mouseArea anchors.fill: parent } }