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

Support for file dragging in workspace panel

This commit is contained in:
Brian Fiete 2021-01-03 11:51:53 -08:00
parent f928b93644
commit f6174aade2
8 changed files with 385 additions and 95 deletions

View file

@ -455,6 +455,19 @@ namespace IDE
}
}
public void GetFullDisplayName(String displayName)
{
if (mParentFolder == null)
return;
if (mParentFolder.mParentFolder != null)
{
mParentFolder.mParentFolder.GetFullDisplayName(displayName);
displayName.Append("/");
}
displayName.Append(mName);
}
public void GetRelDir(String path)
{
if (mPath != null)