Merge branch 'divedetailssplit' of github.com:sebasje/subsurface

This commit is contained in:
Dirk Hohndel 2015-12-07 15:14:48 -08:00
commit 1f41d933c0

View file

@ -20,29 +20,18 @@ MobileComponents.Page {
anchors.fill: parent
contentHeight: logContent.height
clip: true
Item {
id: logContent
ColumnLayout {
width: logFlick.width
height: childrenRect.height + MobileComponents.Units.smallSpacing * 2
ColumnLayout {
anchors {
left: parent.left
right: parent.right
top: parent.top
margins: MobileComponents.Units.smallSpacing
}
spacing: MobileComponents.Units.smallSpacing
Text {
width: logWindow.width
wrapMode: Text.Wrap
text: manager.logText
}
Item {
height: MobileComponents.Units.gridUnit * 3
width: height
}
spacing: MobileComponents.Units.smallSpacing
MobileComponents.Heading {
text: "Application Log"
}
MobileComponents.Label {
id: logContent
Layout.preferredWidth: parent.width
Layout.maximumWidth: parent.width
wrapMode: TextEdit.WrapAtWordBoundaryOrAnywhere
text: manager.logText
}
}
}