From 816cb96925f8b3551799ba01dfef3463e89b436f Mon Sep 17 00:00:00 2001 From: xiepengfei Date: Wed, 3 Dec 2025 10:35:51 +0800 Subject: [PATCH] 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 --- 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 {