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:
parent
0b73451502
commit
0edc697e14
2 changed files with 31 additions and 2 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue