diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2021-08-18 18:03:23 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2021-08-18 19:09:59 -0700 |
commit | 2c04a1f297ffed9d2d5d2365e0397e2e9c21c38e (patch) | |
tree | 867be48bbdd8222bb0fa0ff34b4fd90f74c40860 /mobile-widgets/qml/TemplateLabelSmall.qml | |
parent | 9b669d91e0cf4e7f09e399704a2052705e165be0 (diff) | |
download | subsurface-2c04a1f297ffed9d2d5d2365e0397e2e9c21c38e.tar.gz |
mobile: tweak line spacing
When strings in dive details wrap, the line spacing is too tight
in some circumstances. While not perfect, this change improves
the situation somewhat.
See #3263
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qml/TemplateLabelSmall.qml')
-rw-r--r-- | mobile-widgets/qml/TemplateLabelSmall.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile-widgets/qml/TemplateLabelSmall.qml b/mobile-widgets/qml/TemplateLabelSmall.qml index af8c23d9e..c9c6f0f32 100644 --- a/mobile-widgets/qml/TemplateLabelSmall.qml +++ b/mobile-widgets/qml/TemplateLabelSmall.qml @@ -6,7 +6,7 @@ Label { id: myLabel color: subsurfaceTheme.textColor font.pointSize: subsurfaceTheme.smallPointSize - lineHeight: 0.6 + lineHeight: 0.7 property alias colorBackground: myLabelBackground.color background: Rectangle { |