From 4d47f732305ff86c154c9973e1f6f506cf743a4e Mon Sep 17 00:00:00 2001 From: FellippeHeitor Date: Mon, 1 Apr 2019 01:08:22 -0300 Subject: [PATCH] Prevents showing warnings in status area after F11 is used (IDE). --- source/ide/ide_methods.bas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/ide/ide_methods.bas b/source/ide/ide_methods.bas index 855730e9f..3e4e14452 100644 --- a/source/ide/ide_methods.bas +++ b/source/ide/ide_methods.bas @@ -644,7 +644,7 @@ FUNCTION ide2 (ignore) IF ready THEN IF IDEShowErrorsImmediately THEN LOCATE idewy - 3, 2: PRINT "OK"; 'report OK status - IF totalWarnings > 0 THEN + IF totalWarnings > 0 AND showexecreated = 0 THEN COLOR 11, 1 PRINT " ("; LTRIM$(STR$(totalWarnings)) + " warning"; IF totalWarnings > 1 THEN PRINT "s";