From 95a7fc6362729594565204b6db927b2e025d20c0 Mon Sep 17 00:00:00 2001 From: Leland Lucius Date: Tue, 23 Mar 2021 12:43:46 -0500 Subject: [PATCH] Bug 2707 - Opened projects not being removed from "audacity.cfg" --- src/AutoRecoveryDialog.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/AutoRecoveryDialog.cpp b/src/AutoRecoveryDialog.cpp index 53d721060..7c71da5b4 100644 --- a/src/AutoRecoveryDialog.cpp +++ b/src/AutoRecoveryDialog.cpp @@ -165,6 +165,10 @@ void AutoRecoveryDialog::PopulateList() files.push_back(fullPath); } } + else + { + ActiveProjects::Remove(file); + } } FilePath activeFile;