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:
parent
f928b93644
commit
f6174aade2
8 changed files with 385 additions and 95 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue