diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2017-07-06 06:33:15 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-07-06 09:34:37 -0700 |
commit | ce21c2a69626398591a592461ea09c36983e3e79 (patch) | |
tree | 9c15953107f169f03541d685dc9e5992bb97fb6c /mobile-widgets/qml/Log.qml | |
parent | a8468caaa21c754084161a0c504e9b526d159c71 (diff) | |
download | subsurface-ce21c2a69626398591a592461ea09c36983e3e79.tar.gz |
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>
Diffstat (limited to 'mobile-widgets/qml/Log.qml')
-rw-r--r-- | mobile-widgets/qml/Log.qml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/mobile-widgets/qml/Log.qml b/mobile-widgets/qml/Log.qml index 7f65e3fbf..c31f5df32 100644 --- a/mobile-widgets/qml/Log.qml +++ b/mobile-widgets/qml/Log.qml @@ -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 |