Tastudio - fix exception on load in relase builds
This commit is contained in:
parent
0d8e111c55
commit
7de427fb3c
|
@ -518,15 +518,15 @@ namespace BizHawk.Client.EmuHawk
|
||||||
if (VersionInfo.DeveloperBuild)
|
if (VersionInfo.DeveloperBuild)
|
||||||
{
|
{
|
||||||
RightClickMenu.Items.AddRange(TasView.GenerateContextMenuItems().ToArray());
|
RightClickMenu.Items.AddRange(TasView.GenerateContextMenuItems().ToArray());
|
||||||
}
|
|
||||||
|
|
||||||
RightClickMenu.Items
|
RightClickMenu.Items
|
||||||
.OfType<ToolStripMenuItem>()
|
.OfType<ToolStripMenuItem>()
|
||||||
.First(t => t.Name == "RotateMenuItem")
|
.First(t => t.Name == "RotateMenuItem")
|
||||||
.Click += (o, ov) =>
|
.Click += (o, ov) =>
|
||||||
{
|
{
|
||||||
CurrentTasMovie.FlagChanges();
|
CurrentTasMovie.FlagChanges();
|
||||||
};
|
};
|
||||||
|
}
|
||||||
|
|
||||||
RefreshDialog();
|
RefreshDialog();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue