Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions qt6/src/qml/AboutDialog.qml
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
Loading