Merge pull request #11405 from cbjeukendrup/disable_clear_windows_recent_files

Disable clearing the OS recent files list on Windows
This commit is contained in:
RomanPudashkin 2022-04-26 20:34:14 +02:00 committed by GitHub
commit 8cf334143e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -34,7 +34,4 @@ void WindowsRecentFilesController::addRecentFile(const io::path& path)
void WindowsRecentFilesController::clearRecentFiles()
{
// The "docs" seem to say that this should clear the recent files list
// But in practice it's not sure if that's the case
SHAddToRecentDocs(0, NULL);
}