1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-05 12:20:22 +00:00

Allow ESC to dismiss the "Are you sure you want to clear..." dialog.

This commit is contained in:
FellippeHeitor 2016-01-13 20:08:03 -02:00
parent 9cbcd52968
commit 2f2e93a276

View file

@ -6725,6 +6725,11 @@ DO 'main loop
EXIT FUNCTION
END IF
IF K$ = CHR$(27) THEN
ideclearhistory$ = "N"
EXIT FUNCTION
END IF
'end of custom controls
mousedown = 0
mouseup = 0