mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-22 20:43:09 +00:00
Adjust save notification to be what it was before until newer one is more polished
This commit is contained in:
parent
41adcfffc1
commit
01344bdf68
2 changed files with 6 additions and 2 deletions
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 a new issue