Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
6.8.1
-
None
Description
I am showing a link using QML rich format text, the link is followed by a superscript.
The underline of the link is moved up, like overline instead.
import QtQuick Window { width: 320 height: 320 visible: true title: qsTr("Hello World") Text { anchors.fill: parent textFormat: Text.RichText font.pixelSize: 30 wrapMode: Text.WordWrap text: "<a href=\"https://www.google.com/\">google</a><br><br>" + "<a href=\"https://www.google.com/\">google</a><sup>1</sup>" } }
There could be some text between link and sup, even line break, this still happen.
The output please see attached picture.