1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-01 08:00:37 +00:00

Fixes focus switching in Add Watch dialog.

This commit is contained in:
FellippeHeitor 2021-09-20 17:11:37 -03:00
parent d2cb43f2c0
commit f6f8a254a7

View file

@ -8913,6 +8913,11 @@ FUNCTION idevariablewatchbox$(currentScope$, filter$, selectVar, returnAction)
IF focus = varListBox AND (K$ >= " " AND K$ <= CHR$(126)) THEN
focus = filterBox
PrevFocus = focus
idetxt(o(focus).txt) = K$
o(focus).v1 = LEN(idetxt(o(focus).txt))
o(focus).issel = 0
searchTerm$ = ""
_CONTINUE
END IF