-
Bug
-
Resolution: Done
-
P2: Important
-
5.2.0, 5.2.1, 5.3.0
-
None
Text gets cuts when Text.NativeRendering is used on a Text item on Mac.
Test Case:
import QtQuick 2.1 import QtQuick.Controls 1.0 import QtQuick.Layouts 1.0 ApplicationWindow { title: qsTr("Hello World") width: 900 height: 480 Text { text: "Precipitation OslOo"; font.pixelSize: 44 ; y: 57 x: 30 renderType: Text.NativeRendering } Text { text: "Precipitation OslOo"; font.pixelSize: 44 ; y: 150 x: 30 } }