From fc9e4fc961a1d71ae17cf833ccc56a7a5f4fb707 Mon Sep 17 00:00:00 2001 From: Devin Lin Date: Tue, 18 Jan 2022 23:56:57 +0000 Subject: [PATCH] Reduce minimum height of the window Reduce the minimum height of the window so that it doesn't go off the screen when on mobile landscape (Pinephone) --- qml/main.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qml/main.qml b/qml/main.qml index 3ef8f40e0..be64b4f11 100644 --- a/qml/main.qml +++ b/qml/main.qml @@ -20,7 +20,7 @@ Kirigami.ApplicationWindow { property int columnWidth: Kirigami.Units.gridUnit * 13 minimumWidth: Kirigami.Units.gridUnit * 15 - minimumHeight: Kirigami.Units.gridUnit * 20 + minimumHeight: Kirigami.Units.gridUnit * 15 visible: false // Will be overridden in Component.onCompleted wideScreen: width > columnWidth * 5