mirror of
				https://github.com/cookiengineer/audacity
				synced 2025-10-30 01:03:53 +01:00 
			
		
		
		
	Remove experimental attempt at FAT detection
We'll just have to address each instance individually.
This commit is contained in:
		| @@ -326,11 +326,6 @@ bool ProjectFileIO::OpenConnection(FilePath fileName /* = {}  */) | |||||||
|       } |       } | ||||||
|    } |    } | ||||||
|  |  | ||||||
|    if (FileNames::FATFilesystemDenied(fileName, XO("Project resides on FAT formatted drive."))) |  | ||||||
|    { |  | ||||||
|       return false; |  | ||||||
|    } |  | ||||||
|  |  | ||||||
|    // Pass weak_ptr to project into DBConnection constructor |    // Pass weak_ptr to project into DBConnection constructor | ||||||
|    curConn = std::make_unique<DBConnection>( |    curConn = std::make_unique<DBConnection>( | ||||||
|       mProject.shared_from_this(), mpErrors, [this]{ OnCheckpointFailure(); } ); |       mProject.shared_from_this(), mpErrors, [this]{ OnCheckpointFailure(); } ); | ||||||
|   | |||||||
| @@ -858,6 +858,13 @@ void ProjectFileManager::OpenFile(const FilePath &fileNameArg, bool addtohistory | |||||||
|    auto fileName = PlatformCompatibility::ConvertSlashInFileName( |    auto fileName = PlatformCompatibility::ConvertSlashInFileName( | ||||||
|       PlatformCompatibility::GetLongFileName(fileNameArg)); |       PlatformCompatibility::GetLongFileName(fileNameArg)); | ||||||
|  |  | ||||||
|  |    if (FileNames::FATFilesystemDenied(fileName, | ||||||
|  |                                       XO("Project resides on FAT formatted drive.\n" | ||||||
|  |                                          "Copy it to another drive to open it."))) | ||||||
|  |    { | ||||||
|  |       return; | ||||||
|  |    } | ||||||
|  |  | ||||||
|    // Make sure it isn't already open. |    // Make sure it isn't already open. | ||||||
|    // Vaughan, 2011-03-25: This was done previously in AudacityProject::OpenFiles() |    // Vaughan, 2011-03-25: This was done previously in AudacityProject::OpenFiles() | ||||||
|    //    and AudacityApp::MRUOpen(), but if you open an aup file by double-clicking it |    //    and AudacityApp::MRUOpen(), but if you open an aup file by double-clicking it | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user