Suppress pre-reading if read-all is also selected (as it is redundant) (#84)
This commit is contained in:
parent
8de34a141c
commit
6616b54852
1 changed files with 2 additions and 1 deletions
|
|
@ -113,7 +113,8 @@ namespace Observatory
|
||||||
|
|
||||||
public void PrereadJournals()
|
public void PrereadJournals()
|
||||||
{
|
{
|
||||||
if (!Properties.Core.Default.TryPrimeSystemContextOnStartMonitor) return;
|
if (!Properties.Core.Default.TryPrimeSystemContextOnStartMonitor ||
|
||||||
|
Properties.Core.Default.StartReadAll) return;
|
||||||
|
|
||||||
SetLogMonitorState(currentState | LogMonitorState.PreRead);
|
SetLogMonitorState(currentState | LogMonitorState.PreRead);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue