fixed NSBTX editor export name suggestion

This commit is contained in:
AdAstra-LD 2021-03-04 20:36:32 +01:00
parent 1eabdf7fd4
commit 037a09b01e

View File

@ -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;