Details
-
Bug
-
Resolution: Won't Do
-
P2: Important
-
None
-
5.15.13, 6.5.0
-
1fcbe0f6c (dev), 8469b3692 (dev), 3f3f46d61 (6.6), e799b3de6 (6.6)
-
G&UI Finishing 2023
Description
When the letter J is at the start of a TextField then it will cut off the beginning of the letter due to the negative left bearing. This did not happen in Qt Quick Controls 1 in Qt 5.
Attached is an example which shows this happening.
import QtQuick import QtQuick.Controls import QtQuick.Window Window { width: 640 height: 480 visible: true title: qsTr("Hello World") Rectangle { width : 640 height: 480 TextField { id: textFieldId height: parent.height width: parent.width font.pixelSize: 250 text: "jj" font.family: "Helvetica" leftPadding: 4 } } }