Details
-
Bug
-
Resolution: Invalid
-
P2: Important
-
None
-
6.8.2, 6.9.0
Description
Attached tiny example with Label when runs and after that if you switch OS theme Dark/light this cuts some initial text.
import QtQuick import QtQuick.Controls Window { width: 640 height: 480 visible: true title: qsTr("Hello World") Label { text: "<p><strong>Mount Shasta </strong><span style='color:#000000;'>is a peak in California's </span>Cascade Range range, It ranks <span style='color:#dc143c;'><strong>#6 </strong></span><span style='color:rgb(0,0,0);'><strong> </strong>in the list of California fourteeners.</span><br /><br /><span style='color:rgb(0,0,0);'>The summit is </span><span style='color:#0000cd;'><strong>14,179 </strong></span><span style='color:#000000;'>feet high ( </span>4,322 meters), and has a prominence of 9,832 feet ( 2,997 meters).<br /><a href='http://en.wikipedia.org/wiki/File:Shasta_from_south.jpg' target='_blank' rel='nofollow ugc noopener noreferrer'>Photo credit</a></p>" textFormat: TextEdit.RichText anchors { fill: parent centerIn: parent } wrapMode: TextEdit.Wrap } }