Переглянути джерело

Bug 1660: Error when closing edited/opened files with "Keep temporary copies of remote files in deterministic paths" option enabled

(before Bug 1352, it worked because SHFileOperation silently does nothing when provided with an empty path)

(cherry picked from commit 5b8156df4e73aab36966f781fdfd82fa86c07a22)

Source commit: b7722a09eb3e5f011cbf2de460679e5ea9bec8d5
Martin Prikryl 7 роки тому
батько
коміт
87e6a335ec
1 змінених файлів з 1 додано та 1 видалено
  1. 1 1
      source/windows/EditorManager.cpp

+ 1 - 1
source/windows/EditorManager.cpp

@@ -440,7 +440,7 @@ bool __fastcall TEditorManager::CloseFile(int Index, bool IgnoreErrors, bool Del
     FFiles.erase(FFiles.begin() + Index);
     Result = true;
 
-    if (Delete)
+    if (Delete && !LocalRootDirectory.IsEmpty())
     {
       if (!RecursiveDeleteFile(ExcludeTrailingBackslash(LocalRootDirectory), false) &&
           !IgnoreErrors)