Skip to content
Snippets Groups Projects
Commit 0e818571 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Merge branch 'ddmr_cfg_default_displayIndexedModeMenuIfNoNewMessages' into 'master'

DDMsgReader configurator: Added a default for displayIndexedModeMenuIfNoNewMessages in case it's not in DDMsgReader.cfg

See merge request !384
parents ad6586c2 3a799b5d
No related branches found
No related tags found
1 merge request!384DDMsgReader configurator: Added a default for displayIndexedModeMenuIfNoNewMessages in case it's not in DDMsgReader.cfg
......@@ -748,6 +748,8 @@ function readDDMsgReaderCfgFile()
retObj.cfgOptions.saveAllHdrsWhenSavingMsgToBBSPC = false;
if (!retObj.cfgOptions.hasOwnProperty("useIndexedModeForNewscan"))
retObj.cfgOptions.useIndexedModeForNewscan = false;
if (!retObj.cfgOptions.hasOwnProperty("displayIndexedModeMenuIfNoNewMessages"))
retObj.cfgOptions.displayIndexedModeMenuIfNoNewMessages = false;
if (!retObj.cfgOptions.hasOwnProperty("enableIndexedModeMsgListCache"))
retObj.cfgOptions.enableIndexedModeMsgListCache = true;
if (!retObj.cfgOptions.hasOwnProperty("newscanOnlyShowNewMsgs"))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment