mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
Mobile: ensure there's some space between date and depth/duration
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
2c9bf775b7
commit
9e09a7d920
2 changed files with 10 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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 : ""
|
||||
|
|
Loading…
Reference in a new issue