From e8c2d5c2cf9811cca8522d709c135187c25cbc42 Mon Sep 17 00:00:00 2001 From: Nate Graham Date: Thu, 9 Dec 2021 20:18:07 -0700 Subject: [PATCH] Reduce default size of main window The main window is sort of excessively large right now. This commit reduces it to a more reasonable size. --- src/contents/ui/main.qml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/contents/ui/main.qml b/src/contents/ui/main.qml index f06446c..f9317bd 100644 --- a/src/contents/ui/main.qml +++ b/src/contents/ui/main.qml @@ -12,6 +12,9 @@ import Keysmith.Application 1.0 as Application Kirigami.ApplicationWindow { id: root + width: Kirigami.Units.gridUnit * 28 + height: Kirigami.Units.gridUnit * 28 + Kirigami.PageRouter { id: router initialRoute: "__init__"