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:
parent
1ce63c40fc
commit
13fecfa395
3 changed files with 82 additions and 9 deletions
15
ObservatoryCore/Properties/Core.Designer.cs
generated
15
ObservatoryCore/Properties/Core.Designer.cs
generated
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue