2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-07-01 16:33:43 -04:00

Add a setting to control pre-reading behavior

Also makes adding new rows to the settings grid a little more dynamic.
This commit is contained in:
Fred Kuipers
2021-07-20 19:35:33 -04:00
parent 1ce63c40fc
commit 13fecfa395
3 changed files with 82 additions and 9 deletions

View File

@ -58,5 +58,20 @@ namespace Observatory.Properties {
this["NativeNotify"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("True")]
public bool TryPrimeSystemContextOnStartMonitor
{
get
{
return ((bool)(this["TryPrimeSystemContextOnStartMonitor"]));
}
set
{
this["TryPrimeSystemContextOnStartMonitor"] = value;
}
}
}
}