mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-06 14:52:34 +02:00
Bug 1897 - Export corrupts/clears the Recent Files list
This commit is contained in:
parent
22f85f244b
commit
0c73bc1356
@ -146,6 +146,7 @@ void FileHistory::Load(wxConfigBase & config, const wxString & group)
|
||||
|
||||
void FileHistory::Save(wxConfigBase & config, const wxString & group)
|
||||
{
|
||||
config.SetPath(wxT(""));
|
||||
config.DeleteGroup(group);
|
||||
config.SetPath(group);
|
||||
|
||||
@ -155,7 +156,7 @@ void FileHistory::Save(wxConfigBase & config, const wxString & group)
|
||||
config.Write(wxString::Format(wxT("file%02d"), (int)i), mHistory[n--]);
|
||||
}
|
||||
|
||||
config.SetPath(wxT(".."));
|
||||
config.SetPath(wxT(""));
|
||||
}
|
||||
|
||||
void FileHistory::AddFilesToMenu()
|
||||
|
Loading…
x
Reference in New Issue
Block a user