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

Temporarily(?) remove composite workspace file support

This commit is contained in:
Brian Fiete 2025-01-07 17:26:15 -08:00
parent eebb0f7882
commit dae452da47

View file

@ -8237,12 +8237,14 @@ namespace IDE
if (fullDir.EndsWith("BeefSpace.toml", .OrdinalIgnoreCase))
fullDir.RemoveFromEnd("BeefSpace.toml".Length);
if ((File.Exists(fullDir)) || (IsBeefFile(fullDir)))
//TODO: Properly implement 'composite files'
/*if ((File.Exists(fullDir)) ||
((IsBeefFile(fullDir)) && (!Directory.Exists(fullDir))))
{
mWorkspace.mCompositeFile = new CompositeFile(fullDir);
delete fullDir;
}
else
else*/
mWorkspace.mDir = fullDir;
case "-file":
DragDropFile(value);