- BUGFIX: Fix problems when changing save path (if using temporary download folder)

- Bump to v1.4.1
This commit is contained in:
Christophe Dumez
2009-08-15 10:30:10 +00:00
parent 0612fe4c85
commit a91aa92529
7 changed files with 13 additions and 4 deletions

View File

@@ -711,7 +711,8 @@ void properties::on_changeSavePathButton_clicked() {
savepath_file.write(savePath.path().toLocal8Bit());
savepath_file.close();
// Actually move storage
h.move_storage(savePath.path());
if(!BTSession->useTemporaryFolder() || h.is_seed())
h.move_storage(savePath.path());
// Update save_path in dialog
save_path->setText(savePath.path());
}