Small fix.

pull/520/head
Adam Treat 1 year ago
parent 6256b4fd33
commit 8a13d638d4

@ -23,11 +23,23 @@ Dialog {
radius: 10
}
property string defaultModelPath: Download.defaultLocalModelsPath()
property alias modelPath: settings.modelPath
Settings {
id: settings
property string modelPath: modelDownloaderDialog.defaultModelPath
}
Component.onCompleted: {
Download.downloadLocalModelsPath = settings.modelPath
if (LLM.modelList.length === 0)
open();
}
Component.onDestruction: {
settings.sync()
}
ColumnLayout {
anchors.fill: parent
anchors.margins: 20
@ -308,21 +320,6 @@ Dialog {
}
}
property string defaultModelPath: Download.defaultLocalModelsPath()
property alias modelPath: settings.modelPath
Settings {
id: settings
property string modelPath: settingsDialog.defaultModelPath
}
Component.onCompleted: {
Download.downloadLocalModelsPath = settings.modelPath
}
Component.onDestruction: {
settings.sync()
}
RowLayout {
Layout.alignment: Qt.AlignCenter
Layout.fillWidth: true

Loading…
Cancel
Save