Bug? Navigate Backwards

ajk

Active Member
Licensed User
Longtime User
I have noticed two situations when Navigate Backward work wrong
1) after formatting (Alt+F) focus is moved "somewhere", usually Navigate Backward takes back to wrong location
2) if I stop at debug breakpoint & program will jump "by itself" somewhere (eg. timer in some of services triggers) Navigate Backward takes back to wrong location
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
1) The navigation stack is based on subs. Position changes in the current sub, update the stack top most item. They do not add another item. You will still be taken to the previous sub when going back.

2) I wasn't able to reproduce it. Maybe you moved back before the stack was updated. It can take one or two seconds for it to be updated.
 
Top