diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-05-11 06:51:26 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-05-14 12:57:08 -0700 |
commit | 7720e97db5302692204bab4e7ffc1404ab89e950 (patch) | |
tree | b8697ea3215b106cefc7ed09a845f0712c3e4ba8 /mobile-widgets | |
parent | 46d582ef0a3cfaa036796fd6c1cfd5660903ef08 (diff) | |
download | subsurface-7720e97db5302692204bab4e7ffc1404ab89e950.tar.gz |
mobile: reduce vertical white space around labels
Our labels all seem to have a lot of empty vertical space around them.
Try to be a bit more conservative with space.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets')
-rw-r--r-- | mobile-widgets/qml/TemplateLabel.qml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mobile-widgets/qml/TemplateLabel.qml b/mobile-widgets/qml/TemplateLabel.qml index 4754a8121..9500aebbe 100644 --- a/mobile-widgets/qml/TemplateLabel.qml +++ b/mobile-widgets/qml/TemplateLabel.qml @@ -6,6 +6,7 @@ Label { id: myLabel color: subsurfaceTheme.textColor font.pointSize: subsurfaceTheme.regularPointSize + lineHeight: 0.8 property alias colorBackground: myLabelBackground.color background: Rectangle { |