Tastudio - use Owner not MainForm

This commit is contained in:
adelikat 2019-12-22 09:42:47 -06:00
parent 0ca53ccfcb
commit bd48ee7130
1 changed files with 3 additions and 3 deletions

View File

@ -1106,7 +1106,7 @@ namespace BizHawk.Client.EmuHawk
{ {
new MovieHeaderEditor(CurrentTasMovie) new MovieHeaderEditor(CurrentTasMovie)
{ {
Owner = Mainform, Owner = Owner,
Location = this.ChildPointToScreen(TasView) Location = this.ChildPointToScreen(TasView)
}.Show(); }.Show();
UpdateChangesIndicator(); UpdateChangesIndicator();
@ -1116,9 +1116,9 @@ namespace BizHawk.Client.EmuHawk
{ {
new StateHistorySettingsForm(CurrentTasMovie.TasStateManager.Settings) new StateHistorySettingsForm(CurrentTasMovie.TasStateManager.Settings)
{ {
Owner = Mainform, Owner = Owner,
Location = this.ChildPointToScreen(TasView), Location = this.ChildPointToScreen(TasView),
Statable = this.StatableEmulator Statable = StatableEmulator
}.ShowDialog(); }.ShowDialog();
CurrentTasMovie.TasStateManager.UpdateStateFrequency(); CurrentTasMovie.TasStateManager.UpdateStateFrequency();
UpdateChangesIndicator(); UpdateChangesIndicator();