From c402eb5b0f3ad0edc9af50744952a323f48ba10f Mon Sep 17 00:00:00 2001 From: wizjany Date: Mon, 8 Apr 2019 11:05:26 -0400 Subject: [PATCH] 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. --- NBTExplorer/Windows/MainForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NBTExplorer/Windows/MainForm.cs b/NBTExplorer/Windows/MainForm.cs index d5e57d5..524a6e8 100644 --- a/NBTExplorer/Windows/MainForm.cs +++ b/NBTExplorer/Windows/MainForm.cs @@ -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) {