From 1549d6f528cf243cf67ae0a83bee8a554a33b6da Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Tue, 31 Mar 2020 10:04:02 -0700 Subject: [PATCH] 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 --- mobile-widgets/qml/DiveSummary.qml | 2 ++ 1 file changed, 2 insertions(+) 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) }