1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-06-26 17:10:38 +00:00

Prevents showing warnings in status area after F11 is used (IDE).

This commit is contained in:
FellippeHeitor 2019-04-01 01:08:22 -03:00
parent f8c989a079
commit 4d47f73230

View file

@ -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";