diff options
-rw-r--r-- | mobile-widgets/qml/DiveDetailsView.qml | 5 | ||||
-rw-r--r-- | mobile-widgets/qml/DiveList.qml | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/mobile-widgets/qml/DiveDetailsView.qml b/mobile-widgets/qml/DiveDetailsView.qml index ee3b0902e..fcbcc1fb9 100644 --- a/mobile-widgets/qml/DiveDetailsView.qml +++ b/mobile-widgets/qml/DiveDetailsView.qml @@ -82,6 +82,11 @@ Item { font.pointSize: subsurfaceTheme.smallPointSize color: subsurfaceTheme.textColor } + // spacer, just in case + Controls.Label { + text: " " + width: Kirigami.Units.largeSpacing + } // let's try to show the depth / duration very compact Controls.Label { text: depthDuration diff --git a/mobile-widgets/qml/DiveList.qml b/mobile-widgets/qml/DiveList.qml index ada10c752..0f9939817 100644 --- a/mobile-widgets/qml/DiveList.qml +++ b/mobile-widgets/qml/DiveList.qml @@ -148,6 +148,11 @@ Kirigami.ScrollablePage { font.pointSize: subsurfaceTheme.smallPointSize color: innerListItem.checked ? subsurfaceTheme.darkerPrimaryTextColor : secondaryTextColor } + // spacer, just in case + Controls.Label { + text: " " + width: Kirigami.Units.largeSpacing + } // let's try to show the depth / duration very compact Controls.Label { text: (undefined !== depthDuration) ? depthDuration : "" |