diff options
| author | a1xd <[email protected]> | 2021-01-22 23:27:13 -0500 |
|---|---|---|
| committer | a1xd <[email protected]> | 2021-01-22 23:27:13 -0500 |
| commit | 66cf99e8fb3e9a7c3bac607cebd98c11f73c5545 (patch) | |
| tree | 642b97d07c42451df1ed44787371e787129002bc | |
| parent | Fix anisotropy panel covering bottom classic option in by component (diff) | |
| download | rawaccel-66cf99e8fb3e9a7c3bac607cebd98c11f73c5545.tar.xz rawaccel-66cf99e8fb3e9a7c3bac607cebd98c11f73c5545.zip | |
fix last mouse move - swapped axes
| -rw-r--r-- | grapher/Models/Charts/AccelCharts.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/grapher/Models/Charts/AccelCharts.cs b/grapher/Models/Charts/AccelCharts.cs index 2369432..65c636b 100644 --- a/grapher/Models/Charts/AccelCharts.cs +++ b/grapher/Models/Charts/AccelCharts.cs @@ -31,8 +31,8 @@ namespace grapher gainChart, accelCalculator, estimated, - estimatedY, - estimatedX); + estimatedX, + estimatedY); ContainingForm = form; EnableVelocityAndGain = enableVelocityAndGain; |