diff --git a/src/controls/AboutDialog.qml b/src/controls/AboutDialog.qml index 214007d..9e8d4aa 100644 --- a/src/controls/AboutDialog.qml +++ b/src/controls/AboutDialog.qml @@ -20,6 +20,7 @@ FishUI.Window { property var iconSource property string name property string description + property string link: "https://cutefishos.com" property var contentHeight: _mainLayout.implicitHeight + control.header.height * 2 DragHandler { @@ -57,6 +58,19 @@ FishUI.Window { Layout.alignment: Qt.AlignHCenter } + Label { + text: "%1".arg(control.link) + Layout.alignment: Qt.AlignHCenter + linkColor: FishUI.Theme.highlightColor + visible: Installer.homePage + + MouseArea { + anchors.fill: parent + cursorShape: Qt.PointingHandCursor + onClicked: Qt.openUrlExternally(control.link) + } + } + Item { Layout.fillHeight: true }