QML UI: drop AppLog title and add margin instead

The title was hidden under the title bar, anyway.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2017-07-06 06:33:15 -07:00
parent a8468caaa2
commit ce21c2a696

View file

@ -17,6 +17,7 @@ Kirigami.ScrollablePage {
ListView {
anchors.fill: parent
anchors.topMargin: Kirigami.Units.gridUnit * 2
model: logModel
currentIndex: -1
boundsBehavior: Flickable.StopAtBounds
@ -24,9 +25,6 @@ Kirigami.ScrollablePage {
cacheBuffer: Math.max(5000, parent.height * 5)
focus: true
clip: true
header : Kirigami.Heading {
text: qsTr("Application Log")
}
delegate : Text {
width: logWindow.width
wrapMode: Text.WrapAtWordBoundaryOrAnywhere