1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-04 23:30:24 +00:00

Requests variable values as soon as they're added to watch list.

This commit is contained in:
Fellippe Heitor 2021-07-29 12:24:50 -03:00
parent f816013e8d
commit 132cae7f72

View file

@ -7062,6 +7062,7 @@ SUB DebugMode
vWatchPanel.h = totalVisibleVariables + 2
IF vWatchPanel.h > idewy - 10 THEN vWatchPanel.h = idewy - 10
IF vWatchPanel.h < 5 THEN vWatchPanel.h = 5
GOTO requestVariableValues
END IF
PCOPY 3, 0: SCREEN , , 3, 0
WHILE _MOUSEINPUT: WEND
@ -7255,6 +7256,7 @@ SUB DebugMode
'request variables
IF LEN(variableWatchList$) THEN
requestVariableValues:
temp$ = MID$(variableWatchList$, 5)
DO WHILE LEN(temp$)
tempIndex& = CVL(LEFT$(temp$, 4))