(DirectoryPosition): added constructor from filename.

This commit is contained in:
morkt 2014-07-26 23:07:06 +04:00
parent 46c05b25de
commit 6bf0e89f21

View File

@ -292,5 +292,13 @@ namespace GARbro.GUI
else
ArchivePath = "";
}
public DirectoryPosition (string filename)
{
Path = System.IO.Path.GetDirectoryName (filename);
ArchivePath = "";
var entry = FormatCatalog.Instance.CreateEntry (filename);
Item = new EntryViewModel (entry, 0);
}
}
}