From 9950d3c3efd7a32d903fce90eaae1f4965a071a1 Mon Sep 17 00:00:00 2001 From: FellippeHeitor Date: Thu, 7 Jan 2021 19:45:46 -0300 Subject: [PATCH] Makes "Show line count" default (opt-out). --- source/global/IDEsettings.bas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/global/IDEsettings.bas b/source/global/IDEsettings.bas index a00acc996..8efa4716d 100644 --- a/source/global/IDEsettings.bas +++ b/source/global/IDEsettings.bas @@ -238,8 +238,8 @@ IF LoadedIDESettings = 0 THEN WriteConfigSetting "'[IDE DISPLAY SETTINGS]", "IDE_SUBsLength", "FALSE" END IF ELSE - WriteConfigSetting "'[IDE DISPLAY SETTINGS]", "IDE_SUBsLength", "FALSE" - IDESubsLength = 0 + WriteConfigSetting "'[IDE DISPLAY SETTINGS]", "IDE_SUBsLength", "TRUE" + IDESubsLength = -1 END IF result = ReadConfigSetting("ShowErrorsImmediately", value$)