diff options
| author | a1xd <[email protected]> | 2020-12-05 01:21:03 -0500 |
|---|---|---|
| committer | a1xd <[email protected]> | 2020-12-05 01:21:03 -0500 |
| commit | 2c7c24ee1513616dc6260849bf97340d8484b6b4 (patch) | |
| tree | 2210c90268748f685297313e0541862bf6894aa0 /grapher/Models/Charts/ChartState/XYTwoGraphState.cs | |
| parent | add changes from review (diff) | |
| download | rawaccel-2c7c24ee1513616dc6260849bf97340d8484b6b4.tar.xz rawaccel-2c7c24ee1513616dc6260849bf97340d8484b6b4.zip | |
add more changes from review
improve version error messages
revert poll time changes
add range validation after text parse
Diffstat (limited to 'grapher/Models/Charts/ChartState/XYTwoGraphState.cs')
| -rw-r--r-- | grapher/Models/Charts/ChartState/XYTwoGraphState.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/grapher/Models/Charts/ChartState/XYTwoGraphState.cs b/grapher/Models/Charts/ChartState/XYTwoGraphState.cs index 075cc0f..732ea3c 100644 --- a/grapher/Models/Charts/ChartState/XYTwoGraphState.cs +++ b/grapher/Models/Charts/ChartState/XYTwoGraphState.cs @@ -33,9 +33,9 @@ namespace grapher.Models.Charts.ChartState GainChart.ClearSecondDots(); } - public override void MakeDots(double x, double y, double timeInMsRecip) + public override void MakeDots(double x, double y, double timeInMs) { - Data.CalculateDotsXY(x, y, timeInMsRecip); + Data.CalculateDotsXY(x, y, timeInMs); } public override void Bind() |