- [GUI] bug fixes

This commit is contained in:
Razmoth
2023-11-25 15:29:15 +04:00
parent 89a3543f18
commit 148969c457
2 changed files with 5 additions and 2 deletions

View File

@@ -1437,7 +1437,8 @@ namespace AssetStudio.GUI
{
if (InvokeRequired)
{
BeginInvoke(new Action(() => { toolStripStatusLabel1.Text = statusText; }));
var result = BeginInvoke(() => { toolStripStatusLabel1.Text = statusText; });
result.AsyncWaitHandle.WaitOne();
}
else
{