Details
-
Bug
-
Resolution: Done
-
P2: Important
-
5.6.1, 5.7.0, 5.8.0, 5.14.1
-
*Windows* 8 64-bit
*Linux* version 4.4.3-gentoo 64-bit
-
ec33541cf3873bc311522d3ae24c75cf6aa28a6b (qt/qtdeclarative/5.15)
Description
Next piece of code working incorrectly:
import QtQuick 2.5 import QtQuick.Window 2.0 Window { visible: true width: 400 height: 100 Text { anchors.fill: parent; text: "This string not fit into area"; minimumPointSize: 10; font.pointSize: 72; fontSizeMode: Text.Fit; textFormat: Text.RichText; } }