From 629c6248a40994d70ac8b9873b4542454858ed32 Mon Sep 17 00:00:00 2001 From: VaDiM Date: Wed, 8 Mar 2023 12:11:07 +0300 Subject: [PATCH] [GUI] Use blocking call to show messages in correct order --- AssetStudioGUI/AssetStudioGUIForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {