1
0
mirror of synced 2025-02-20 20:51:35 +01:00

Enable multi select for batch exporting

This commit is contained in:
KillzXGaming 2019-06-19 19:43:01 -04:00
parent cc2e7df037
commit b2abeba272

View File

@ -67,6 +67,7 @@ namespace FirstPlugin
public void BatchExport(object sender, EventArgs args)
{
OpenFileDialog ofd = new OpenFileDialog();
ofd.Multiselect = true;
ofd.Filter = "Supported Formats|*.bin";
if (ofd.ShowDialog() != DialogResult.OK) return;