From 037a09b01e717feebfbbd95520203e8bd3eb63f2 Mon Sep 17 00:00:00 2001 From: AdAstra-LD Date: Thu, 4 Mar 2021 20:36:32 +0100 Subject: [PATCH] fixed NSBTX editor export name suggestion --- DS_Map/Main Window.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DS_Map/Main Window.cs b/DS_Map/Main Window.cs index 3882a98..a4da7fa 100644 --- a/DS_Map/Main Window.cs +++ b/DS_Map/Main Window.cs @@ -6015,7 +6015,7 @@ namespace DSPRE { private void exportNSBTXButton_Click(object sender, EventArgs e) { SaveFileDialog sf = new SaveFileDialog(); sf.Filter = "NSBTX File (*.nsbtx)|*.nsbtx"; - sf.FileName = "Texture Pack " + texturesListBox.SelectedIndex; + sf.FileName = "Texture Pack " + texturePacksListBox.SelectedIndex; if (sf.ShowDialog(this) != DialogResult.OK) return;