You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/view/qml/Dialogs/AboutDialog.qml
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,21 @@ Dialog {
43
43
cursorShape:Qt.PointingHandCursor
44
44
}
45
45
}
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
0 commit comments