summaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qml/StatisticsPage.qml
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2021-01-11 17:30:44 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2021-01-13 11:39:36 -0800
commit22ffe59a60907e9a2a3cff946a6c41f3a1675623 (patch)
tree772fd2565f59ba493b0257f12604d5e593578826 /mobile-widgets/qml/StatisticsPage.qml
parentee3482c109498033b07cc8a74a736153fbd783a8 (diff)
downloadsubsurface-22ffe59a60907e9a2a3cff946a6c41f3a1675623.tar.gz
mobile/statistics: fix layout issue in wide mode
After spending so much time trying to make things work well on smaller screens I completely missed that there was an off by one error making the statistics display way too small on larger tablets in landscape mode. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qml/StatisticsPage.qml')
-rw-r--r--mobile-widgets/qml/StatisticsPage.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile-widgets/qml/StatisticsPage.qml b/mobile-widgets/qml/StatisticsPage.qml
index 2948dd067..e13d1ec6f 100644
--- a/mobile-widgets/qml/StatisticsPage.qml
+++ b/mobile-widgets/qml/StatisticsPage.qml
@@ -135,7 +135,7 @@ Kirigami.Page {
Layout.column: wide ? 1 : 0
Layout.row: wide ? 0 : 3
Layout.columnSpan: wide ? 1 : 3
- Layout.rowSpan: wide ? 5 : 1
+ Layout.rowSpan: wide ? 6 : 1
id: statsView
Layout.margins: Kirigami.Units.smallSpacing
Layout.fillWidth: true