mirror of
https://github.com/jaquadro/NBTExplorer.git
synced 2025-01-09 09:26:25 +00:00
Merge pull request #32 from codewarrior0/open-unknown-as-nbt
When opening files directly, try opening as NBT if no registered filetypes were able to open them.
This commit is contained in:
commit
5d456cf743
1 changed files with 8 additions and 6 deletions
|
@ -231,6 +231,8 @@ namespace NBTExplorer.Controllers
|
|||
node = item.Value.NodeCreate(path);
|
||||
}
|
||||
|
||||
if (node == null)
|
||||
node = NbtFileDataNode.TryCreateFrom(path);
|
||||
if (node != null)
|
||||
_nodeTree.Nodes.Add(CreateUnexpandedNode(node));
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue