Skip to content

Commit

Permalink
Added hyperlink to Acknowledgements.md in About page
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilSoleymani committed Aug 18, 2022
1 parent 1741802 commit f36afde
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion src/UI/SettingsScreen/About.qml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Rectangle {

text: "<b>VDisp</b> is a one-dimensional soil settlement analysis software, written using the Julia programming language and Qt/QML."
color: "#fff3e4"
font.pixelSize: 18 + 10 * (vdispWindow.width-vdispWindow.minimumWidth)/(vdispWindow.maximumWidth-vdispWindow.minimumWidth)
font.pixelSize: 18 + 14 * (vdispWindow.width-vdispWindow.minimumWidth)/(vdispWindow.maximumWidth-vdispWindow.minimumWidth)

width: vdispWindow.width * 0.8 * 0.8
wrapMode: Text.WordWrap
Expand All @@ -44,6 +44,28 @@ Rectangle {
centerIn: parent
}
}

Text {
id: acknowledgementLink

color: "#fff3e4"
font.pixelSize: 16 + 10 * (vdispWindow.width-vdispWindow.minimumWidth)/(vdispWindow.maximumWidth-vdispWindow.minimumWidth)
text: "<u>Acknowledgements</u>"

MouseArea {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
onClicked: {
Qt.openUrlExternally("https://github.com/smiths/vdisp/blob/main/Acknowledgements.md")
}
}

anchors {
horizontalCenter: parent.horizontalCenter
top: aboutParagraph.bottom
topMargin: 20
}
}
///////////////////////////////

// Footer ////////////////////
Expand Down

0 comments on commit f36afde

Please sign in to comment.