Tastudio - just print "File saved" instead of the filename since it is redundant to the Title which has the filename, and it overlaps other text in the status bar, fixes #2142

This commit is contained in:
adelikat 2020-07-13 19:15:25 -05:00
parent 175556529e
commit 946ff45608
1 changed files with 2 additions and 2 deletions

View File

@ -821,7 +821,7 @@ namespace BizHawk.Client.EmuHawk
_autosaveTimer?.Start();
}
MessageStatusLabel.Text = $"{CurrentTasMovie.Name} saved.";
MessageStatusLabel.Text = "File saved.";
Settings.RecentTas.Add(CurrentTasMovie.Filename);
Cursor = Cursors.Default;
GlobalWin.Sound.StartSound();
@ -854,7 +854,7 @@ namespace BizHawk.Client.EmuHawk
CurrentTasMovie.Save();
Settings.RecentTas.Add(CurrentTasMovie.Filename);
SetTextProperty();
MessageStatusLabel.Text = $"{Path.GetFileName(CurrentTasMovie.Filename)} saved.";
MessageStatusLabel.Text = "File saved.";
Cursor = Cursors.Default;
}