From fdec5d253cfadaec005c683622b62b8b66347efc Mon Sep 17 00:00:00 2001 From: FellippeHeitor Date: Wed, 29 Sep 2021 20:28:00 -0300 Subject: [PATCH] Show full variable name/array/udt in Watch Panel popups. --- 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 5b216d821..122fcd61b 100644 --- a/source/ide/ide_methods.bas +++ b/source/ide/ide_methods.bas @@ -7999,7 +7999,7 @@ SUB showvWatchPanel (this AS vWatchPanelType, currentScope$, action as _BYTE) k = CVL(MID$(watchpointList$, j + 4, 4)) temp3$ = MID$(watchpointList$, j + 8, k) k = CVI(RIGHT$(temp3$, 2)) - condition$ = " Watchpoint: " + usedVariableList(tempIndex&).name + " " + MID$(temp3$, LEN(temp3$) - (2 + k) + 1, k) + " " + condition$ = " Watchpoint: " + thisName$ + " " + MID$(temp3$, LEN(temp3$) - (2 + k) + 1, k) + " " IF LEN(condition$) > idewx - 8 THEN condition$ = LEFT$(condition$, idewx - 10) + " "