Skip to content

Commit 47c6d5d

Browse files
committed
Add support links to About dialog
1 parent de3dd9a commit 47c6d5d

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

src/view/qml/Dialogs/AboutDialog.qml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,21 @@ Dialog {
4343
cursorShape: Qt.PointingHandCursor
4444
}
4545
}
46+
Label {
47+
text: " "
48+
}
49+
Label {
50+
id: support_Text
51+
text: `${qsTr("Support this project by listening music created with Noteahead:")} <a href="https://www.arcticmusicproject.com">https://www.arcticmusicproject.com</a>.<br/>${qsTr("Spotify playlist:")} <a href="https://open.spotify.com/playlist/5yyhZlUsetq5C9NgPhAMQK">https://open.spotify.com/playlist/5yyhZlUsetq5C9NgPhAMQK</a>`
52+
onLinkActivated: link => Qt.openUrlExternally(link)
53+
wrapMode: Text.WordWrap
54+
Layout.preferredWidth: 350
55+
MouseArea {
56+
anchors.fill: parent
57+
acceptedButtons: Qt.NoButton // Don't eat the mouse clicks
58+
cursorShape: Qt.PointingHandCursor
59+
}
60+
}
4661
}
4762
}
4863
Component.onCompleted: {

0 commit comments

Comments
 (0)