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

Fixes watch panel not showing on the mac.

Wonder how it was still showing in Windows tho... mysteries.
This commit is contained in:
Fellippe Heitor 2021-08-26 18:26:48 -03:00
parent b8d50b09d2
commit a1a6fa6edb

View file

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