From 670dfe6da8e7b787f7c1dc906d0d60796956a170 Mon Sep 17 00:00:00 2001 From: FellippeHeitor Date: Wed, 11 Aug 2021 00:39:55 -0300 Subject: [PATCH] Makes "wait for compilation" message a status message. --- source/ide/ide_methods.bas | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/source/ide/ide_methods.bas b/source/ide/ide_methods.bas index 7a86722d5..7d57bd81d 100644 --- a/source/ide/ide_methods.bas +++ b/source/ide/ide_methods.bas @@ -5713,8 +5713,12 @@ FUNCTION ide2 (ignore) END IF ELSE IF idecompiling = 1 THEN - result = idemessagebox("Watch List", "Variable List not yet available.\nWait for the 'OK' message in the status area.", "#Continue Compilation") - PCOPY 3, 0: SCREEN , , 3, 0 + SCREEN , , 3, 0 + COLOR 14, 1 + x = 2 + y = idewy - 2 + printWrapStatus x, y, x, "Variable List will be available after syntax checking is done..." + PCOPY 3, 0 GOTO ideloop ELSE result$ = idevariablewatchbox$("", "", 0, 0)