summaryrefslogtreecommitdiff
path: root/grapher/Models/AccelGUI.cs
diff options
context:
space:
mode:
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()