1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-18 16:10:26 +02:00

Fixed file moving issues, multi-select issues

This commit is contained in:
Brian Fiete 2021-01-21 05:19:27 -08:00
parent 5dfb4a8f2e
commit 0543dfec65
2 changed files with 94 additions and 67 deletions

View file

@ -280,6 +280,14 @@ namespace IDE
if ((wasWatching) && (changePath))
StartWatching();
}
public void RecalcPath()
{
mPath.Clear();
mPath.Append(mParentFolder.mPath);
mPath.Append(Path.DirectorySeparatorChar);
mPath.Append(mName);
}
}
public class ProjectSource : ProjectFileItem