diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2016-06-12 07:32:07 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-06-12 07:32:07 -0700 |
commit | 72523ff0dfc6f8e2ecd9ef07f72cdce2af527e3d (patch) | |
tree | d005d6a1425045f357c520ae0e436cfe158161c0 /mobile-widgets | |
parent | 92e06007cc733655a63fc6a0771cfdbae00e808b (diff) | |
download | subsurface-72523ff0dfc6f8e2ecd9ef07f72cdce2af527e3d.tar.gz |
QML UI: somewhat improve GPS list rendering
At least now it's readable, but on the flipside there's now this odd
margin around the entries.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets')
-rw-r--r-- | mobile-widgets/qml/GpsList.qml | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/mobile-widgets/qml/GpsList.qml b/mobile-widgets/qml/GpsList.qml index 4322e9080..47b1d4c77 100644 --- a/mobile-widgets/qml/GpsList.qml +++ b/mobile-widgets/qml/GpsList.qml @@ -21,22 +21,13 @@ Kirigami.ScrollablePage { id: gpsFix enabled: true width: parent.width - property int horizontalPadding: Kirigami.Units.gridUnit / 2 - Kirigami.Units.smallSpacing + 1 - Kirigami.BasicListItem { supportsMouseEvents: true width: parent.width - Kirigami.Units.gridUnit - height: childrenRect.height - Kirigami.Units.smallSpacing icon: "" GridLayout { columns: 4 id: timeAndName - anchors { - left: parent.left - leftMargin: horizontalPadding - right: parent.right - rightMargin: horizontalPadding - } Kirigami.Label { text: qsTr('Date: ') opacity: 0.6 |