1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-07-04 15:26:00 +02:00

Waits for execution queue

This commit is contained in:
Brian Fiete 2020-07-29 05:10:56 -07:00
parent 53ba427232
commit 41485f4106

View file

@ -1004,6 +1004,13 @@ namespace IDE
if (!gApp.[Friend]mExecutionInstances.IsEmpty) if (!gApp.[Friend]mExecutionInstances.IsEmpty)
return false; return false;
if (!gApp.[Friend]mExecutionQueue.IsEmpty)
{
var nextCmd = gApp.mExecutionQueue[0];
if (!(nextCmd is IDEApp.TargetCompletedCmd))
return false;
}
if (gApp.mDebugger == null) if (gApp.mDebugger == null)
return true; return true;