Adjust save notification to be what it was before until newer one is more polished
This commit is contained in:
parent
41adcfffc1
commit
01344bdf68
Binary file not shown.
@ -45,7 +45,9 @@ namespace Switch_Toolbox.Library.IO
|
||||
FileFormat.IFileInfo.FileIsCompressed);
|
||||
|
||||
File.WriteAllBytes(FileName, FinalData);
|
||||
STSaveLogDialog.Show($"File has been saved to {FileName}", "Save Notification", DetailsLog);
|
||||
MessageBox.Show($"File has been saved to {FileName}", "Save Notification");
|
||||
|
||||
// STSaveLogDialog.Show($"File has been saved to {FileName}", "Save Notification", DetailsLog);
|
||||
Cursor.Current = Cursors.Default;
|
||||
}
|
||||
|
||||
@ -103,7 +105,9 @@ namespace Switch_Toolbox.Library.IO
|
||||
byte[] FinalData = CompressFileFormat(data, FileIsCompressed, Alignment, CompressionType, FileName, EnableDialog);
|
||||
File.WriteAllBytes(FileName, FinalData);
|
||||
|
||||
STSaveLogDialog.Show($"File has been saved to {FileName}", "Save Notification", DetailsLog);
|
||||
MessageBox.Show($"File has been saved to {FileName}", "Save Notification");
|
||||
|
||||
// STSaveLogDialog.Show($"File has been saved to {FileName}", "Save Notification", DetailsLog);
|
||||
Cursor.Current = Cursors.Default;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user