Save the window size for the user and reuse next load.

Signed-off-by: Adam Treat <treat.adam@gmail.com>
This commit is contained in:
Adam Treat 2024-02-21 11:40:05 -05:00 committed by AT
parent fa0a2129dc
commit 896fc6fbb7

View File

@ -21,6 +21,14 @@ Window {
visible: true
title: qsTr("GPT4All v") + Qt.application.version
Settings {
property alias x: window.x
property alias y: window.y
property alias width: window.width
property alias height: window.height
}
Theme {
id: theme
}