mirror of
https://github.com/aelurum/AssetStudio.git
synced 2025-07-18 03:24:15 -04:00
[GUI] Use blocking call to show messages in correct order
This commit is contained in:
@ -1254,7 +1254,7 @@ namespace AssetStudioGUI
|
|||||||
{
|
{
|
||||||
if (InvokeRequired)
|
if (InvokeRequired)
|
||||||
{
|
{
|
||||||
BeginInvoke(new Action(() => { toolStripStatusLabel1.Text = statusText; }));
|
Invoke(new Action(() => { toolStripStatusLabel1.Text = statusText; }));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user