Skip to content
This repository was archived by the owner on Sep 15, 2025. It is now read-only.

Commit 5ac1cde

Browse files
committed
Fix bug
1 parent 392ce99 commit 5ac1cde

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Advanced Lock/Forms/ED.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,10 @@ private void Result_ED_Text_IconRightClick(object sender, EventArgs e)
249249
private void Background_EFile_DoWork(object sender, DoWorkEventArgs e)
250250
{
251251
string Arg = e.Argument.ToString();
252-
backgroundProgress.RunWorkerAsync();
252+
if (!backgroundProgress.IsBusy)
253+
{
254+
backgroundProgress.RunWorkerAsync();
255+
}
253256
switch (Arg)
254257
{
255258
case "Decrypt_File":

0 commit comments

Comments
 (0)