diff --git a/AssetStudioGUI/AssetStudioGUIForm.cs b/AssetStudioGUI/AssetStudioGUIForm.cs index c5222de..b94a44c 100644 --- a/AssetStudioGUI/AssetStudioGUIForm.cs +++ b/AssetStudioGUI/AssetStudioGUIForm.cs @@ -1254,7 +1254,7 @@ namespace AssetStudioGUI { if (InvokeRequired) { - BeginInvoke(new Action(() => { toolStripStatusLabel1.Text = statusText; })); + Invoke(new Action(() => { toolStripStatusLabel1.Text = statusText; })); } else {