From 725bf39cd8d28db968cfb838d33173f02c6f9a15 Mon Sep 17 00:00:00 2001 From: deepin-ci-robot Date: Wed, 3 Dec 2025 02:36:20 +0000 Subject: [PATCH] sync: from linuxdeepin/dtkdeclarative Synchronize source files from linuxdeepin/dtkdeclarative. Source-pull-request: https://github.com/linuxdeepin/dtkdeclarative/pull/551 --- qt6/src/qml/AboutDialog.qml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/qt6/src/qml/AboutDialog.qml b/qt6/src/qml/AboutDialog.qml index 2e8cfaff..99bf6d7e 100644 --- a/qt6/src/qml/AboutDialog.qml +++ b/qt6/src/qml/AboutDialog.qml @@ -100,10 +100,17 @@ DialogWindow { Label { id: websiteLabel font: D.DTK.fontManager.t8 + textFormat: Text.RichText text: (control.websiteLink === "" || control.websiteName === "") ? "" : control.__websiteLinkTemplate.arg(websiteLink).arg(control.websiteName) wrapMode: Text.WordWrap Layout.fillWidth: true + + MouseArea { + anchors.fill: parent + cursorShape: Qt.PointingHandCursor + acceptedButtons: Qt.NoButton + } } } ColumnLayout {