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

Immediate commands no longer wait for paused

This commit is contained in:
Brian Fiete 2019-10-16 13:06:50 -07:00
parent 67ee302451
commit 3c153d27d2
2 changed files with 46 additions and 8 deletions

View file

@ -338,7 +338,7 @@ namespace IDE.ui
if (cmdText.StartsWith("%"))
{
gApp.mScriptManager.Clear();
gApp.mScriptManager.QueueCommands(StringView(cmdText, 1), "Immediate", .NoLines);
gApp.mScriptManager.QueueCommands(StringView(cmdText, 1), "Immediate", .NoLines | .NoWait);
}
else
result = mResultHoverWatch.Eval(cmdText, false);