mirror of
https://github.com/beefytech/Beef.git
synced 2025-07-04 23:36:00 +02:00
Waits for execution queue
This commit is contained in:
parent
53ba427232
commit
41485f4106
1 changed files with 7 additions and 0 deletions
|
@ -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;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue