1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Merge pull request #1274 from disarray2077/patch-4

Fix folder renaming
This commit is contained in:
Brian Fiete 2021-12-13 09:06:47 -05:00 committed by GitHub
commit 2fded5ab0c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -845,6 +845,13 @@ namespace IDE
childFileItem.OnRename(childFileItem.mPath, newChildPath);
String oldFullName = scope String();
mProject.GetProjectFullPath(childFileItem.mPath, oldFullName);
String newFullName = scope String();
mProject.GetProjectFullPath(newChildPath, newFullName);
IDEApp.sApp.FileRenamed(childFileItem, oldFullName, newFullName);
childFileItem.mPath.Set(newChildPath);
}
}