diff --git a/AM2RLauncher/AM2RLauncher/MainForm/MainForm.Events.cs b/AM2RLauncher/AM2RLauncher/MainForm/MainForm.Events.cs index 82b2e19..73446e2 100644 --- a/AM2RLauncher/AM2RLauncher/MainForm/MainForm.Events.cs +++ b/AM2RLauncher/AM2RLauncher/MainForm/MainForm.Events.cs @@ -811,7 +811,7 @@ public partial class MainForm : Form { Application.Instance.Invoke(() => { - MessageBox.Show(Text.ShortcutWarning, Text.WarningWindowTitle, MessageBoxType.Warning); + MessageBox.Show(this, Text.ShortcutWarning, Text.WarningWindowTitle, MessageBoxType.Warning); }); } @@ -876,7 +876,7 @@ public partial class MainForm : Form { Application.Instance.Invoke(() => { - MessageBox.Show(exception.Message, Text.UnhandledException, MessageBoxType.Error); + MessageBox.Show(this, exception.Message, Text.UnhandledException, MessageBoxType.Error); }); } }