mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 14:18:24 +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,12 +104,22 @@ DialogContainer {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ScrollView {
|
Rectangle {
|
||||||
id: scrollArea
|
|
||||||
width: parent.width
|
width: parent.width
|
||||||
height: updateDialog.noticeHeight
|
height: updateDialog.noticeHeight
|
||||||
|
|
||||||
|
border {
|
||||||
|
width: 1
|
||||||
|
color: "#808080"
|
||||||
|
}
|
||||||
|
|
||||||
|
ScrollView {
|
||||||
|
id: scrollArea
|
||||||
|
width: parent.width - updateDialog.closeMargin
|
||||||
|
height: parent.height
|
||||||
horizontalScrollBarPolicy: Qt.ScrollBarAlwaysOff
|
horizontalScrollBarPolicy: Qt.ScrollBarAlwaysOff
|
||||||
verticalScrollBarPolicy: Qt.ScrollBarAsNeeded
|
verticalScrollBarPolicy: Qt.ScrollBarAsNeeded
|
||||||
|
anchors.right: parent.right
|
||||||
|
|
||||||
Text {
|
Text {
|
||||||
id: releaseNotes
|
id: releaseNotes
|
||||||
|
@ -120,6 +130,7 @@ DialogContainer {
|
||||||
color: "#000000"
|
color: "#000000"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Row {
|
Row {
|
||||||
anchors.right: parent.right
|
anchors.right: parent.right
|
||||||
|
|
Loading…
Reference in a new issue