From 235143528cb542f79693e9df501d536aaccf604c Mon Sep 17 00:00:00 2001 From: Kai Uwe Broulik Date: Sat, 14 Jun 2025 10:08:03 +0200 Subject: [PATCH] MaximizeComponent: Fix download location No idea where "saveFolder" was supposed to be coming from but this makes it use the last location or default to downloads, consistent with the other save dialogs. --- src/app/qml/NeochatMaximizeComponent.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/qml/NeochatMaximizeComponent.qml b/src/app/qml/NeochatMaximizeComponent.qml index 6db40899c..e97b218fa 100644 --- a/src/app/qml/NeochatMaximizeComponent.qml +++ b/src/app/qml/NeochatMaximizeComponent.qml @@ -139,7 +139,7 @@ Components.AlbumMaximizeComponent { id: saveAsDialog Dialogs.FileDialog { fileMode: Dialogs.FileDialog.SaveFile - currentFolder: root.saveFolder + currentFolder: NeoChatConfig.lastSaveDirectory.length > 0 ? NeoChatConfig.lastSaveDirectory : Core.StandardPaths.writableLocation(Core.StandardPaths.DownloadLocation) onAccepted: { NeoChatConfig.lastSaveDirectory = currentFolder; NeoChatConfig.save();