2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-12-16 04:44:56 +01:00

Explorer: Show data for the current system only (#86)

Resolves #63

This behavior is suppressed during batch reads.
This commit is contained in:
F K
2022-05-28 09:03:36 -04:00
committed by GitHub
parent 6616b54852
commit 8106fbd0df
3 changed files with 30 additions and 7 deletions

View File

@@ -86,6 +86,9 @@ namespace Observatory.Explorer
[SettingDisplayName("Enable Custom Criteria")]
public bool EnableCustomCriteria { get; set; }
[SettingDisplayName("Only Show Current System")]
public bool OnlyShowCurrentSystem { get; set; }
[SettingDisplayName("Custom Criteria File")]
[System.Text.Json.Serialization.JsonIgnore]
public System.IO.FileInfo CustomCriteria {get => new System.IO.FileInfo(CustomCriteriaFile); set => CustomCriteriaFile = value.FullName;}