From e0072ec83bcfeaf520c6c56a29caadfa23e41506 Mon Sep 17 00:00:00 2001 From: nakst <> Date: Sat, 23 Oct 2021 17:29:33 +0100 Subject: [PATCH] file manager move file to parent folder fix --- apps/file_manager/folder.cpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/apps/file_manager/folder.cpp b/apps/file_manager/folder.cpp index ae745dc..bd81457 100644 --- a/apps/file_manager/folder.cpp +++ b/apps/file_manager/folder.cpp @@ -504,21 +504,11 @@ void FolderPathMoved(String oldPath, String newPath, bool saveConfiguration) { for (uintptr_t j = 0; j < instances[i]->pathBackwardHistory.Length(); j++) { HistoryEntry *entry = &instances[i]->pathBackwardHistory[j]; PathReplacePrefix(&entry->path, oldPath, newPath); - - if (StringStartsWith(oldPath, entry->path) && StringEquals(entry->focusedItem, StringSlice(oldPath, entry->path.bytes, -1))) { - StringDestroy(&entry->focusedItem); - entry->focusedItem = StringDuplicate(StringSlice(newPath, entry->path.bytes, -1)); - } } for (uintptr_t j = 0; j < instances[i]->pathForwardHistory.Length(); j++) { HistoryEntry *entry = &instances[i]->pathForwardHistory[j]; PathReplacePrefix(&entry->path, oldPath, newPath); - - if (StringStartsWith(oldPath, entry->path) && StringEquals(entry->focusedItem, StringSlice(oldPath, entry->path.bytes, -1))) { - StringDestroy(&entry->focusedItem); - entry->focusedItem = StringDuplicate(StringSlice(newPath, entry->path.bytes, -1)); - } } }