Fixed Mouse Joystick X Axis setting

This commit is contained in:
Travis Nickles 2019-09-03 06:20:05 -05:00
parent fa1d8f003d
commit 6f861eba2f
3 changed files with 8281 additions and 4709 deletions

File diff suppressed because it is too large Load Diff

View File

@ -372,7 +372,7 @@ namespace DS4Windows.Forms
gyroMouseStickAntiDeadY.ValueChanged += GyroMouseSStickAntiDeadY_ValueChanged;
gyroMStickVertScaleNUD.ValueChanged += GyroMStickVertScaleNUD_ValueChanged;
gyroMouseStickEvalCombo.SelectedIndexChanged += GyroMouseStickEvalCombo_SelectedIndexChanged;
//gyroMousestickXAxisCom.SelectedIndexChanged +=
gyroMousestickXAxisCom.SelectedIndexChanged += GyroMousestickXAxisCom_SelectedIndexChanged;
gyroMouseStickInvertXCk.CheckedChanged += GyroMouseStickInvert_CheckedChanged;
gyroMouseStickInvertYCk.CheckedChanged += GyroMouseStickInvert_CheckedChanged;
gyroMStickUseSmoothCk.CheckedChanged += GyroMStickUseSmoothCk_CheckedChanged;
@ -3834,6 +3834,14 @@ namespace DS4Windows.Forms
}
}
private void GyroMousestickXAxisCom_SelectedIndexChanged(object sender, EventArgs e)
{
if (loading == false)
{
GyroMouseStickHorizontalAxis[device] = gyroMousestickXAxisCom.SelectedIndex;
}
}
private void trackFrictionNUD_ValueChanged(object sender, EventArgs e)
{
if (loading == false)

File diff suppressed because it is too large Load Diff