Add border around update details

This commit is contained in:
David Rowe 2015-07-07 15:48:39 -07:00
parent 0994cd97dc
commit 98cd706528

View file

@ -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