1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-06-29 10:30:36 +00:00

Add current line to navigation history before going to line with error.

Saves current line before focusing on the line that has an error indicated in the status area.
This commit is contained in:
FellippeHeitor 2016-04-06 01:59:38 -03:00
parent 12010a273c
commit 022218f7a7

View file

@ -1212,7 +1212,7 @@ DO
IF mCLICK THEN
IF mX >= 2 AND mX <= idewx AND mY >= idewy - 3 AND mY <= idewy - 1 THEN
IF SCREEN(mY, mX, 1) = 11 + 1 * 16 THEN
IF idefocusline THEN idecx = 1: idecy = idefocusline: ideselect = 0: GOTO specialchar
IF idefocusline THEN idecx = 1: AddQuickNavHistory idecy: idecy = idefocusline: ideselect = 0: GOTO specialchar
END IF
END IF
END IF