From c00c92e4a2608b175a03b8405a1b77fd9ec90fa6 Mon Sep 17 00:00:00 2001 From: FellippeHeitor Date: Sun, 17 Jul 2016 17:41:30 -0300 Subject: [PATCH] Fix to ignore input while the IDE is waiting for execution to end. Previously, if the IDE had focus while a compiled program was being run (F5), any input on the window would later be processed, messing up the source code sometimes. That's been fixed. --- source/qb64.bas | 1 + 1 file changed, 1 insertion(+) diff --git a/source/qb64.bas b/source/qb64.bas index 59cf62990..e71064994 100644 --- a/source/qb64.bas +++ b/source/qb64.bas @@ -1129,6 +1129,7 @@ IF C = 9 THEN 'run IF path.exe$ = "" THEN path.exe$ = "./" IF os$ = "LNX" THEN SHELL QuotedFilename$(path.exe$ + file$ + extension$) + ModifyCOMMAND$ IF path.exe$ = "./" THEN path.exe$ = "" + _KEYCLEAR END IF sendc$ = CHR$(6) 'ready