Fixed unable to edit subtitles while TAStudio is open.

This commit is contained in:
kylelyk 2014-08-22 00:31:41 +00:00
parent e8d9ae7e7c
commit 9bcb5f835a
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ namespace BizHawk.Client.Common
Changes = true;
}
//Taseditor deletes markers that are in truncated portion of movie.
//TAS Editor deletes markers that are in truncated portion of movie.
Markers.TruncateAt(frame);
}

View File

@ -840,7 +840,7 @@ namespace BizHawk.Client.EmuHawk
private void SubtitlesMenuItem_Click(object sender, EventArgs e)
{
var form = new EditSubtitlesForm { ReadOnly = true };
var form = new EditSubtitlesForm { ReadOnly = false };
form.GetMovie(Global.MovieSession.Movie);
form.ShowDialog();
}