From 946ff456089e1f35223ae533f3532a74ad9c7b4e Mon Sep 17 00:00:00 2001 From: adelikat Date: Mon, 13 Jul 2020 19:15:25 -0500 Subject: [PATCH] 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 --- src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs index e1098cca88..90a73a0150 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs @@ -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; }