1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-01 15:00:38 +00:00

Fix retrieval of ideindentsubs setting.

This commit is contained in:
FellippeHeitor 2017-11-05 13:52:05 -02:00
parent c3cfb9a15a
commit caaafda7ec

View file

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