1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 19:48:20 +02:00

Fix folder renaming

This commit is contained in:
disarray2077 2021-12-13 10:36:31 -03:00 committed by GitHub
parent 902c038227
commit c545e4ed37
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);
}
}