diff options
| author | a1xd <[email protected]> | 2021-09-06 23:24:51 -0400 |
|---|---|---|
| committer | a1xd <[email protected]> | 2021-09-07 05:08:25 -0400 |
| commit | 404b272a558b0bb915e182b01849c9631f829619 (patch) | |
| tree | 5479599472ed0d88561f12677898febcce6fe4d7 /grapher/Form1.cs | |
| parent | increase lut points capacity to 257 (diff) | |
| download | rawaccel-404b272a558b0bb915e182b01849c9631f829619.tar.xz rawaccel-404b272a558b0bb915e182b01849c9631f829619.zip | |
get grapher building
Diffstat (limited to 'grapher/Form1.cs')
| -rw-r--r-- | grapher/Form1.cs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/grapher/Form1.cs b/grapher/Form1.cs index ba16a23..c492a9b 100644 --- a/grapher/Form1.cs +++ b/grapher/Form1.cs @@ -40,7 +40,6 @@ namespace grapher AccelGUI = AccelGUIFactory.Construct( this, - ManagedAccel.GetActive(), AccelerationChart, AccelerationChartY, VelocityChart, @@ -57,7 +56,7 @@ namespace grapher showLastMouseMoveToolStripMenuItem, streamingModeToolStripMenuItem, AutoWriteMenuItem, - UseSpecificDeviceMenuItem, + DeviceMenuItem, ScaleMenuItem, DPITextBox, PollRateTextBox, @@ -210,7 +209,7 @@ namespace grapher } else if (m.Msg == 0x00fe) // WM_INPUT_DEVICE_CHANGE { - AccelGUI.UpdateInputManagers(); + AccelGUI.Settings.OnDeviceChangeMessage(); } } |