From 5f9a58a620be445dd49462149f2ea4cd236e0e66 Mon Sep 17 00:00:00 2001 From: FellippeHeitor Date: Tue, 21 Sep 2021 02:22:46 -0300 Subject: [PATCH] Fixes "Add All" in Watch List (_Bit variables + $NoPrefix). --- 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 faa23f69f..c1c17fc8e 100644 --- a/source/ide/ide_methods.bas +++ b/source/ide/ide_methods.bas @@ -8210,7 +8210,7 @@ FUNCTION idevariablewatchbox$(currentScope$, filter$, selectVar, returnAction) FOR y = 1 TO totalVisibleVariables varType$ = usedVariableList(y).varType IF INSTR(varType$, "STRING *") THEN varType$ = "STRING" - IF INSTR(varType$, "_BIT *") THEN varType$ = "_BIT" + IF INSTR(varType$, "BIT *") THEN varType$ = "_BIT" IF (usedVariableList(varDlgList(y).index).isarray AND LEN(usedVariableList(varDlgList(y).index).watchRange) = 0) OR _ INSTR(nativeDataTypes$, varType$) = 0 THEN _CONTINUE usedVariableList(varDlgList(y).index).watch = -1