From 3713e388e3068252e45255e230244b1a9b203da5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mika=C3=ABl=20Capelle?= Date: Wed, 27 May 2026 20:16:09 +0200 Subject: [PATCH] Send local saves to recycle bin when switching from global to local saves instead of deleting them directly. --- src/profile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/profile.cpp b/src/profile.cpp index 001c98168..4970f457f 100644 --- a/src/profile.cpp +++ b/src/profile.cpp @@ -868,7 +868,7 @@ bool Profile::enableLocalSaves(bool enable) QDialogButtonBox::No | QDialogButtonBox::Yes | QDialogButtonBox::Cancel, QDialogButtonBox::No); if (res == QMessageBox::Yes) { - shellDelete(QStringList(m_Directory.absoluteFilePath("saves"))); + shellDelete(QStringList(m_Directory.absoluteFilePath("saves")), true); } else if (res == QMessageBox::No) { // No action } else {