diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-03-31 10:04:02 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-03-31 20:33:11 -0700 |
commit | 1549d6f528cf243cf67ae0a83bee8a554a33b6da (patch) | |
tree | cedd7f5c56d8e4cf8896e2d349fbbebf93ea84eb /mobile-widgets/qml | |
parent | 4982751bbee85e3015eb7c9de0b65c79153d9278 (diff) | |
download | subsurface-1549d6f528cf243cf67ae0a83bee8a554a33b6da.tar.gz |
mobile/dive-summary: make the drop downs smaller
Especially on smaller screens we had issues fitting this on the screen.
And it looks fine on larger screens as well.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qml')
-rw-r--r-- | mobile-widgets/qml/DiveSummary.qml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mobile-widgets/qml/DiveSummary.qml b/mobile-widgets/qml/DiveSummary.qml index 36f8442fd..da2e96d20 100644 --- a/mobile-widgets/qml/DiveSummary.qml +++ b/mobile-widgets/qml/DiveSummary.qml @@ -91,6 +91,7 @@ Kirigami.ScrollablePage { editable: false currentIndex: 0 model: monthModel + font.pointSize: subsurfaceTheme.smallPointSize onActivated: { summaryModel.calc(0, currentIndex) } @@ -100,6 +101,7 @@ Kirigami.ScrollablePage { editable: false currentIndex: 3 model: monthModel + font.pointSize: subsurfaceTheme.smallPointSize onActivated: { summaryModel.calc(1, currentIndex) } |