mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 19:59:28 +02:00
Add border around update details
This commit is contained in:
parent
0994cd97dc
commit
98cd706528
1 changed files with 21 additions and 10 deletions
|
@ -104,20 +104,31 @@ DialogContainer {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ScrollView {
|
Rectangle {
|
||||||
id: scrollArea
|
|
||||||
width: parent.width
|
width: parent.width
|
||||||
height: updateDialog.noticeHeight
|
height: updateDialog.noticeHeight
|
||||||
horizontalScrollBarPolicy: Qt.ScrollBarAlwaysOff
|
|
||||||
verticalScrollBarPolicy: Qt.ScrollBarAsNeeded
|
|
||||||
|
|
||||||
Text {
|
border {
|
||||||
id: releaseNotes
|
width: 1
|
||||||
wrapMode: Text.Wrap
|
color: "#808080"
|
||||||
|
}
|
||||||
|
|
||||||
|
ScrollView {
|
||||||
|
id: scrollArea
|
||||||
width: parent.width - updateDialog.closeMargin
|
width: parent.width - updateDialog.closeMargin
|
||||||
text: updateDialog.releaseNotes
|
height: parent.height
|
||||||
font.pixelSize: 14
|
horizontalScrollBarPolicy: Qt.ScrollBarAlwaysOff
|
||||||
color: "#000000"
|
verticalScrollBarPolicy: Qt.ScrollBarAsNeeded
|
||||||
|
anchors.right: parent.right
|
||||||
|
|
||||||
|
Text {
|
||||||
|
id: releaseNotes
|
||||||
|
wrapMode: Text.Wrap
|
||||||
|
width: parent.width - updateDialog.closeMargin
|
||||||
|
text: updateDialog.releaseNotes
|
||||||
|
font.pixelSize: 14
|
||||||
|
color: "#000000"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue