1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-06-29 09:20:38 +00:00

Fix never ending lines when down arrow kept being pressed

The issue was introduced after CTRL+UP/DOWN was implemented.
This commit is contained in:
FellippeHeitor 2016-01-14 13:53:54 -02:00
parent fcf9334581
commit e2a202084a

View file

@ -2769,7 +2769,7 @@ DO
ELSE
GOSUB selectcheck
idecy = idecy + 1
IF idecy < idesy THEN idecy = idesy
IF idecy > iden THEN idecy = iden
GOTO specialchar
END IF
END IF