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 { 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"
}
} }
} }