1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-06-26 17:10:38 +00:00

Allows Shift+ENTER to work like regular ENTER...

...if no special _RGB32() trick is at play.
This commit is contained in:
Fellippe Heitor 2021-02-11 21:53:06 -03:00
parent 8458b4eac2
commit 968d8ad446

View file

@ -3628,6 +3628,8 @@ FUNCTION ide2 (ignore)
HideBracketHighlight
keywordHighlight = oldkeywordHighlight
retval$ = idergbmixer$(-1)
ELSE
GOTO RegularEnter
END IF
END IF
IF LEN(retval$) THEN
@ -3640,11 +3642,11 @@ FUNCTION ide2 (ignore)
END IF
GOTO specialchar
ELSE
a$ = idegetline(idecy)
RegularEnter:
ideselect = 0
desiredcolumn = 1
idechangemade = 1
a$ = idegetline(idecy)
IF idecx > LEN(a$) THEN
ideinsline idecy + 1, ""
IF LEN(a$) = 0 THEN