mirror of
https://github.com/jaquadro/NBTExplorer.git
synced 2025-01-09 09:26:25 +00:00
Show .schem files in open file dialog.
They can just as well be seen with the All Files filter, but might as well add them to the NBT Files filter as well.
This commit is contained in:
parent
66a2140f6f
commit
c402eb5b0f
1 changed files with 1 additions and 1 deletions
|
@ -165,7 +165,7 @@ namespace NBTExplorer.Windows
|
|||
using (OpenFileDialog ofd = new OpenFileDialog() {
|
||||
RestoreDirectory = true,
|
||||
Multiselect = true,
|
||||
Filter = "All Files|*|NBT Files (*.dat, *.schematic)|*.dat;*.nbt;*.schematic|Region Files (*.mca, *.mcr)|*.mca;*.mcr",
|
||||
Filter = "All Files|*|NBT Files (*.dat, *.schematic)|*.dat;*.nbt;*.schematic;*.schem|Region Files (*.mca, *.mcr)|*.mca;*.mcr",
|
||||
FilterIndex = 0,
|
||||
}) {
|
||||
if (ofd.ShowDialog() == DialogResult.OK) {
|
||||
|
|
Loading…
Reference in a new issue