summaryrefslogtreecommitdiff
path: root/grapher/Models/Serialized/GUISettings.cs
diff options
context:
space:
mode:
authorJacobPalecki <[email protected]>2021-05-19 15:04:45 -0700
committerGitHub <[email protected]>2021-05-19 15:04:45 -0700
commitf88751f8653b4bce9d5e3ed3109da2f2427a6f99 (patch)
treec67a4e59da866c86cdfffb786a76090525637166 /grapher/Models/Serialized/GUISettings.cs
parentMerge pull request #86 from a1xd/fix-input (diff)
parentremove unused variable, improve legend position (diff)
downloadrawaccel-f88751f8653b4bce9d5e3ed3109da2f2427a6f99.tar.xz
rawaccel-f88751f8653b4bce9d5e3ed3109da2f2427a6f99.zip
Merge pull request #87 from matthewstrasiotto/streamer_mode
Improve use of whitespace on charts, make elements bolder, add "streaming mode" toggle for overlaying charts using Chroma key in OBS
Diffstat (limited to 'grapher/Models/Serialized/GUISettings.cs')
-rw-r--r--grapher/Models/Serialized/GUISettings.cs9
1 files changed, 7 insertions, 2 deletions
diff --git a/grapher/Models/Serialized/GUISettings.cs b/grapher/Models/Serialized/GUISettings.cs
index bb35055..a4eb627 100644
--- a/grapher/Models/Serialized/GUISettings.cs
+++ b/grapher/Models/Serialized/GUISettings.cs
@@ -31,6 +31,9 @@ namespace grapher.Models.Serialized
[JsonProperty(Order = 5)]
public bool AutoWriteToDriverOnStartup { get; set; }
+ [JsonProperty(Order = 6)]
+ public bool StreamingMode { get; set; }
+
#endregion Properties
#region Methods
@@ -53,7 +56,8 @@ namespace grapher.Models.Serialized
PollRate == other.PollRate &&
ShowLastMouseMove == other.ShowLastMouseMove &&
ShowVelocityAndGain == other.ShowVelocityAndGain &&
- AutoWriteToDriverOnStartup == other.AutoWriteToDriverOnStartup;
+ AutoWriteToDriverOnStartup == other.AutoWriteToDriverOnStartup &&
+ StreamingMode == other.StreamingMode;
}
public override int GetHashCode()
@@ -62,7 +66,8 @@ namespace grapher.Models.Serialized
PollRate.GetHashCode() ^
ShowLastMouseMove.GetHashCode() ^
ShowVelocityAndGain.GetHashCode() ^
- AutoWriteToDriverOnStartup.GetHashCode();
+ AutoWriteToDriverOnStartup.GetHashCode() ^
+ StreamingMode.GetHashCode();
}
#endregion Methods