From 22ffe59a60907e9a2a3cff946a6c41f3a1675623 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Mon, 11 Jan 2021 17:30:44 -0800 Subject: 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 --- mobile-widgets/qml/StatisticsPage.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mobile-widgets') 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 -- cgit v1.2.3-70-g09d2