summaryrefslogtreecommitdiff
path: root/grapher/Models/Charts/ChartXY.cs
diff options
context:
space:
mode:
authorJacob Palecki <[email protected]>2020-09-25 22:21:26 -0700
committerJacob Palecki <[email protected]>2020-09-25 22:21:26 -0700
commit70360dd3c19909737d29c0b2b9fb1a7ba3f12bba (patch)
tree345c3329330271145e67733a1a9ca79ebf00448c /grapher/Models/Charts/ChartXY.cs
parentFix 0 point for separate x y sens (diff)
downloadrawaccel-70360dd3c19909737d29c0b2b9fb1a7ba3f12bba.tar.xz
rawaccel-70360dd3c19909737d29c0b2b9fb1a7ba3f12bba.zip
Last mouse move perfetly responsive at 100 FPS
Diffstat (limited to 'grapher/Models/Charts/ChartXY.cs')
-rw-r--r--grapher/Models/Charts/ChartXY.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/grapher/Models/Charts/ChartXY.cs b/grapher/Models/Charts/ChartXY.cs
index c30c993..3bd7601 100644
--- a/grapher/Models/Charts/ChartXY.cs
+++ b/grapher/Models/Charts/ChartXY.cs
@@ -154,6 +154,15 @@ namespace grapher
*/
}
+ public void Update()
+ {
+ ChartX.Update();
+ if (ChartY.Visible)
+ {
+ ChartY.Update();
+ }
+ }
+
public void SetPointBinds(PointData combined, PointData x, PointData y)
{
CombinedPointData = combined;