From a1a6fa6edb87712b626a21dcffca64e5d8b0449f Mon Sep 17 00:00:00 2001 From: Fellippe Heitor Date: Thu, 26 Aug 2021 18:26:48 -0300 Subject: [PATCH] Fixes watch panel not showing on the mac. Wonder how it was still showing in Windows tho... mysteries. --- 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 88bf83ccd..471d58131 100644 --- a/source/ide/ide_methods.bas +++ b/source/ide/ide_methods.bas @@ -8021,7 +8021,7 @@ FUNCTION idevariablewatchbox$(currentScope$, filter$, selectVar, returnAction) longestVarName = 0 nextvWatchDataSlot = 0 FOR y = 1 TO totalVariablesCreated - IF usedVariableList(x).includedLine THEN _CONTINUE 'don't deal with variables in $INCLUDEs + IF usedVariableList(y).includedLine THEN _CONTINUE 'don't deal with variables in $INCLUDEs IF usedVariableList(y).watch THEN thisLen = LEN(usedVariableList(y).name) IF usedVariableList(y).isarray THEN