1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-03 08:51:22 +00:00

Fixes $LET being incorrectly placed in the IDE while editing.

This commit is contained in:
Fellippe Heitor 2021-02-15 21:22:57 -03:00
parent 339b82d1b0
commit 1272892425

View file

@ -1758,7 +1758,6 @@ DO
END SELECT
NEXT
r$ = r1$
layout$ = SCase$("$Let ") + l$ + " = " + r$
'First look to see if we have an existing setting like this and if so, update it
FOR i = 8 TO UserDefineCount 'UserDefineCount 1-7 are reserved for automatic OS/BIT detection & version
IF UserDefine(0, i) = l$ THEN UserDefine(1, i) = r$: GOTO finishedlinepp