1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-02 03:50:36 +00:00

Fix retrieval of ideindentsubs from config.txt

This commit is contained in:
FellippeHeitor 2017-10-30 10:21:14 -02:00
parent c096896105
commit 6b5cba468f

View file

@ -330,7 +330,7 @@ IF LoadedIDESettings = 0 THEN
result = ReadConfigSetting("IDE_IndentSUBs", value$)
ideindentsubs = VAL(value$)
IF UCASE$(value$) = "TRUE" OR ideautoindent <> 0 THEN
IF UCASE$(value$) = "TRUE" OR ideindentsubs <> 0 THEN
ideindentsubs = 1
ELSE
IF UCASE$(value$) <> "FALSE" AND value$ <> "0" THEN