diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-12-21 18:13:25 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-12-23 09:44:39 -0800 |
commit | ee0ca3995ea826daa681289b9c308ea7a42e548e (patch) | |
tree | 9e7f377cf8466809419d9984d453aa8daa4df72f | |
parent | a2b1266c15d70d5c49d33ab43b15d6ba5abd89f7 (diff) | |
download | subsurface-ee0ca3995ea826daa681289b9c308ea7a42e548e.tar.gz |
mobile/UI: fix trip details padding
Incorrect reference to the Kirigami Units.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | mobile-widgets/qml/TripDetails.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile-widgets/qml/TripDetails.qml b/mobile-widgets/qml/TripDetails.qml index 6973c73e5..482dad12c 100644 --- a/mobile-widgets/qml/TripDetails.qml +++ b/mobile-widgets/qml/TripDetails.qml @@ -14,7 +14,7 @@ Kirigami.Page { title: "" !== tripLocation ? tripLocation : qsTr("Trip details") state: "view" - padding: Kirigami.largeSpacing + padding: Kirigami.Units.largeSpacing background: Rectangle { color: subsurfaceTheme.backgroundColor } actions.main: saveAction actions.right: cancelAction |