tastudio: stop using threaded project saver to ban all dialog manipulation.

should fix #596 and probably #580.
todo: option to only save every nth frame.
This commit is contained in:
feos 2016-04-17 19:37:01 +03:00
parent a7b3668506
commit d7217df311
1 changed files with 2 additions and 18 deletions

View File

@ -85,14 +85,7 @@ namespace BizHawk.Client.EmuHawk
}
else
{
if (_exiting)
{
CurrentTasMovie.Save();
}
else
{
_saveBackgroundWorker.RunWorkerAsync();
}
CurrentTasMovie.Save();
Settings.RecentTas.Add(CurrentTasMovie.Filename);
}
}
@ -114,16 +107,7 @@ namespace BizHawk.Client.EmuHawk
if (file != null)
{
CurrentTasMovie.Filename = file.FullName;
if (_exiting)
{
CurrentTasMovie.Save();
}
else
{
_saveBackgroundWorker.RunWorkerAsync();
}
CurrentTasMovie.Save();
Settings.RecentTas.Add(CurrentTasMovie.Filename);
SetTextProperty();
}