From 005697e11562c73989dbe5d7793a026cc5338687 Mon Sep 17 00:00:00 2001 From: Fellippe Heitor Date: Sat, 2 Oct 2021 13:00:16 -0300 Subject: [PATCH] Add space before the watchpoint condition Mere visual glitch. --- 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 2dd19a16c..a5689230e 100644 --- a/source/ide/ide_methods.bas +++ b/source/ide/ide_methods.bas @@ -7590,7 +7590,7 @@ SUB DebugMode tempArrayIndexes$ = tempArrayIndexes$ + GetBytes$(value$, CVL(tempArrayIndexes$)) tempElementOffset$ = GetBytes$(value$, 4) i = CVI(GetBytes$(value$, 2)) - temp$ = usedVariableList(tempIndex&).name + GetBytes$(value$, i) + temp$ = usedVariableList(tempIndex&).name + " " + GetBytes$(value$, i) result = idemessagebox("Watchpoint condition met", temp$, "#OK;#Clear Watchpoint") IF result = 2 THEN 'find existing watchpoint for the same variable/index/element