Ram Watch - when saving a new watch, add it to the recent menu

This commit is contained in:
andres.delikat 2011-06-26 19:01:06 +00:00
parent ec7e4123fd
commit c8e8cee822
1 changed files with 1 additions and 0 deletions

View File

@ -682,6 +682,7 @@ namespace BizHawk.MultiClient
SaveWatchFile(file.FullName); SaveWatchFile(file.FullName);
currentWatchFile = file.FullName; currentWatchFile = file.FullName;
MessageLabel.Text = Path.GetFileName(currentWatchFile) + " saved."; MessageLabel.Text = Path.GetFileName(currentWatchFile) + " saved.";
Global.Config.RecentWatches.Add(file.FullName);
} }
} }