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

Properly compares before/after of includes edited from within+

+another instance of the IDE.
This commit is contained in:
FellippeHeitor 2021-01-21 00:24:17 -03:00
parent 2631640615
commit ea1b0b1a51

View file

@ -2825,6 +2825,7 @@ FUNCTION ide2 (ignore)
backupIncludeFile = FREEFILE
OPEN f$ FOR BINARY AS #backupIncludeFile
tempInclude1$ = SPACE$(LOF(backupIncludeFile))
GET #backupIncludeFile, 1, tempInclude1$
CLOSE #backupIncludeFile
WriteConfigSetting "'[IDE DISPLAY SETTINGS]", "IDE_AutoPosition", "FALSE"
@ -2856,6 +2857,7 @@ FUNCTION ide2 (ignore)
OPEN f$ FOR BINARY AS #backupIncludeFile
tempInclude2$ = SPACE$(LOF(backupIncludeFile))
GET #backupIncludeFile, 1, tempInclude2$
CLOSE #backupIncludeFile
dummy = DarkenFGBG(0)