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

Fixed folder creation/deletion bugs

This commit is contained in:
Brian Fiete 2020-05-07 05:39:53 -07:00
parent 0b73451502
commit 0edc697e14
2 changed files with 31 additions and 2 deletions

View file

@ -148,7 +148,16 @@ namespace IDE
DepInfo depInfo;
mWatchedFiles.TryGetValue(fixedFilePath, out depInfo);
if (depInfo == null)
return;
{
if (changeType == .Deleted)
{
fixedFilePath.Append(IDEUtils.cNativeSlash);
mWatchedFiles.TryGetValue(fixedFilePath, out depInfo);
}
if (depInfo == null)
return;
}
if (depInfo.mContent != null)
{