Tastudio - fix exception on load in relase builds

This commit is contained in:
adelikat 2014-11-22 15:09:01 +00:00
parent 0d8e111c55
commit 7de427fb3c
1 changed files with 2 additions and 2 deletions

View File

@ -518,15 +518,15 @@ namespace BizHawk.Client.EmuHawk
if (VersionInfo.DeveloperBuild)
{
RightClickMenu.Items.AddRange(TasView.GenerateContextMenuItems().ToArray());
}
RightClickMenu.Items
RightClickMenu.Items
.OfType<ToolStripMenuItem>()
.First(t => t.Name == "RotateMenuItem")
.Click += (o, ov) =>
{
CurrentTasMovie.FlagChanges();
};
}
RefreshDialog();
}