diff options
| author | Jacob Palecki <[email protected]> | 2020-09-08 15:20:31 -0700 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2020-09-08 15:20:31 -0700 |
| commit | b8a8eb8a70cf71c61e5dc851229a83027f43194d (patch) | |
| tree | 6a13b6ed99bc181fa8931099583bd8ec228e23fa /grapher/Models/Charts/AccelCharts.cs | |
| parent | Add option to turn off last mouse move dot (diff) | |
| download | rawaccel-b8a8eb8a70cf71c61e5dc851229a83027f43194d.tar.xz rawaccel-b8a8eb8a70cf71c61e5dc851229a83027f43194d.zip | |
By component, anisotropy full works
Diffstat (limited to 'grapher/Models/Charts/AccelCharts.cs')
| -rw-r--r-- | grapher/Models/Charts/AccelCharts.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/grapher/Models/Charts/AccelCharts.cs b/grapher/Models/Charts/AccelCharts.cs index 84673b8..3f228c3 100644 --- a/grapher/Models/Charts/AccelCharts.cs +++ b/grapher/Models/Charts/AccelCharts.cs @@ -1,5 +1,6 @@ using grapher.Models.Calculations; using grapher.Models.Charts; +using grapher.Models.Serialized; using System; using System.Drawing; using System.Windows.Forms; @@ -51,6 +52,7 @@ namespace grapher EnableLastValue.CheckedChanged += new System.EventHandler(OnEnableLastMouseMoveCheckStateChange); HideVelocityAndGain(); + SensitivityChart.Show(); Combined = false; ShowCombined(); } @@ -127,9 +129,9 @@ namespace grapher } } - public void RefreshXY(bool isWhole) + public void ShowActive(DriverSettings driverSettings) { - if (isWhole) + if (driverSettings.combineMagnitudes) { ShowCombined(); } |