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 anchors.fill: parent
contentHeight: logContent.height contentHeight: logContent.height
clip: true clip: true
Item { ColumnLayout {
id: logContent
width: logFlick.width width: logFlick.width
height: childrenRect.height + MobileComponents.Units.smallSpacing * 2 spacing: MobileComponents.Units.smallSpacing
MobileComponents.Heading {
ColumnLayout { text: "Application Log"
anchors { }
left: parent.left MobileComponents.Label {
right: parent.right id: logContent
top: parent.top Layout.preferredWidth: parent.width
margins: MobileComponents.Units.smallSpacing Layout.maximumWidth: parent.width
} wrapMode: TextEdit.WrapAtWordBoundaryOrAnywhere
spacing: MobileComponents.Units.smallSpacing text: manager.logText
Text {
width: logWindow.width
wrapMode: Text.Wrap
text: manager.logText
}
Item {
height: MobileComponents.Units.gridUnit * 3
width: height
}
} }
} }
} }