mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
simplify and style log page
- less instantiated objects inside each other - add page heading - allow wrapping of text Signed-off-by: Sebastian Kügler <sebas@kde.org>
This commit is contained in:
parent
96470d7dbf
commit
0a22b340e9
1 changed files with 10 additions and 23 deletions
|
@ -20,29 +20,16 @@ MobileComponents.Page {
|
|||
anchors.fill: parent
|
||||
contentHeight: logContent.height
|
||||
clip: true
|
||||
Item {
|
||||
id: logContent
|
||||
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
|
||||
}
|
||||
ColumnLayout {
|
||||
spacing: MobileComponents.Units.smallSpacing
|
||||
MobileComponents.Heading {
|
||||
text: "Application Log"
|
||||
}
|
||||
MobileComponents.Label {
|
||||
id: logContent
|
||||
width: logFlick.width
|
||||
wrapMode: TextEdit.WrapAtWordBoundaryOrAnywhere
|
||||
text: manager.logText
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue