import QtQuick 2.3 import QtQuick.Controls 1.2 import QtQuick.Window 2.2 import QtQuick.Controls.Styles 1.1 ApplicationWindow { title: qsTr("Kerning problem") width: 640 height: 480 TextArea { anchors.fill: parent anchors.margins: 40 textFormat: Text.RichText font.family: 'Arial' font.pointSize: 8 style: TextAreaStyle { renderType: Text.NativeRendering } text: qsTr("RT RT RT RT RT
RY RY RY RY RY
RW RW RW RW RW RW
RV RV RV RV RV ") } }