Skip to content

Commit 24df4c9

Browse files
pengfeixxdeepin-bot[bot]
authored andcommitted
fix: Fix the issue with about window link styles
Fix the issue with about window link styles Log: Fix the issue with about window link styles pms: BUG-342613
1 parent 86ba9f6 commit 24df4c9

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

qt6/src/qml/AboutDialog.qml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,17 @@ DialogWindow {
100100
Label {
101101
id: websiteLabel
102102
font: D.DTK.fontManager.t8
103+
textFormat: Text.RichText
103104
text: (control.websiteLink === "" || control.websiteName === "") ?
104105
"" : control.__websiteLinkTemplate.arg(websiteLink).arg(control.websiteName)
105106
wrapMode: Text.WordWrap
106107
Layout.fillWidth: true
108+
109+
MouseArea {
110+
anchors.fill: parent
111+
cursorShape: Qt.PointingHandCursor
112+
acceptedButtons: Qt.NoButton
113+
}
107114
}
108115
}
109116
ColumnLayout {

0 commit comments

Comments
 (0)