summaryrefslogtreecommitdiff
path: root/grapher/Models/AccelGUI.cs
diff options
context:
space:
mode:
authorJacob Palecki <[email protected]>2020-09-08 15:20:31 -0700
committerJacob Palecki <[email protected]>2020-09-08 15:20:31 -0700
commitb8a8eb8a70cf71c61e5dc851229a83027f43194d (patch)
tree6a13b6ed99bc181fa8931099583bd8ec228e23fa /grapher/Models/AccelGUI.cs
parentAdd option to turn off last mouse move dot (diff)
downloadrawaccel-b8a8eb8a70cf71c61e5dc851229a83027f43194d.tar.xz
rawaccel-b8a8eb8a70cf71c61e5dc851229a83027f43194d.zip
By component, anisotropy full works
Diffstat (limited to 'grapher/Models/AccelGUI.cs')
-rw-r--r--grapher/Models/AccelGUI.cs6
1 files changed, 4 insertions, 2 deletions
diff --git a/grapher/Models/AccelGUI.cs b/grapher/Models/AccelGUI.cs
index c150393..3acb943 100644
--- a/grapher/Models/AccelGUI.cs
+++ b/grapher/Models/AccelGUI.cs
@@ -96,7 +96,6 @@ namespace grapher
public void RefreshOnRead()
{
- AccelCharts.RefreshXY(Settings.RawAccelSettings.AccelerationSettings.combineMagnitudes);
UpdateGraph();
UpdateShownActiveValues();
}
@@ -112,7 +111,10 @@ namespace grapher
public void UpdateShownActiveValues()
{
- ApplyOptions.SetActiveValues(Settings.RawAccelSettings.AccelerationSettings);
+ var settings = Settings.RawAccelSettings.AccelerationSettings;
+
+ AccelCharts.ShowActive(settings);
+ ApplyOptions.SetActiveValues(settings);
}
private Timer SetupButtonTimer()