[GUI] Use blocking call to show messages in correct order

This commit is contained in:
VaDiM 2023-03-08 12:11:07 +03:00
parent 7674081df7
commit 629c6248a4

View File

@ -1254,7 +1254,7 @@ namespace AssetStudioGUI
{ {
if (InvokeRequired) if (InvokeRequired)
{ {
BeginInvoke(new Action(() => { toolStripStatusLabel1.Text = statusText; })); Invoke(new Action(() => { toolStripStatusLabel1.Text = statusText; }));
} }
else else
{ {