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

Show full variable name/array/udt in Watch Panel popups.

This commit is contained in:
FellippeHeitor 2021-09-29 20:28:00 -03:00
parent dec20c96a2
commit fdec5d253c

View file

@ -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) + " "