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,20 +104,31 @@ DialogContainer {
}
}
ScrollView {
id: scrollArea
Rectangle {
width: parent.width
height: updateDialog.noticeHeight
horizontalScrollBarPolicy: Qt.ScrollBarAlwaysOff
verticalScrollBarPolicy: Qt.ScrollBarAsNeeded
Text {
id: releaseNotes
wrapMode: Text.Wrap
border {
width: 1
color: "#808080"
}
ScrollView {
id: scrollArea
width: parent.width - updateDialog.closeMargin
text: updateDialog.releaseNotes
font.pixelSize: 14
color: "#000000"
height: parent.height
horizontalScrollBarPolicy: Qt.ScrollBarAlwaysOff
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"
}
}
}