mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2025-12-06 07:12:01 +01:00
SteamController: Fix broken scroll on left pad introduced by 0.6.21
This commit is contained in:
parent
531b69c80f
commit
58a3d44d5c
|
|
@ -6,6 +6,10 @@
|
||||||
|
|
||||||
## #{GIT_TAG_NAME}
|
## #{GIT_TAG_NAME}
|
||||||
|
|
||||||
|
- SteamController: Fix broken scroll on left pad introduced by 0.6.21
|
||||||
|
|
||||||
|
## 0.6.21
|
||||||
|
|
||||||
- SteamController: Add support for circular deadzone on left/right sticks
|
- SteamController: Add support for circular deadzone on left/right sticks
|
||||||
- FanControl: Add Silent fan profile. Configure `Silent4000RPMTemp` threshold in `FanControl.dll.ini`
|
- FanControl: Add Silent fan profile. Configure `Silent4000RPMTemp` threshold in `FanControl.dll.ini`
|
||||||
- SteamController: Added `Win+D` shortcut under `Steam+RightStickPress`
|
- SteamController: Added `Win+D` shortcut under `Steam+RightStickPress`
|
||||||
|
|
|
||||||
|
|
@ -132,7 +132,7 @@ namespace SteamController.Profiles.Default
|
||||||
}
|
}
|
||||||
if (c.Steam.LPadY)
|
if (c.Steam.LPadY)
|
||||||
{
|
{
|
||||||
c.Mouse.HorizontalScroll(
|
c.Mouse.VerticalScroll(
|
||||||
c.Steam.LPadY.GetDeltaValue(
|
c.Steam.LPadY.GetDeltaValue(
|
||||||
Context.PadToWhellSensitivity * (double)Settings.Default.ScrollDirection,
|
Context.PadToWhellSensitivity * (double)Settings.Default.ScrollDirection,
|
||||||
Devices.DeltaValueMode.Delta,
|
Devices.DeltaValueMode.Delta,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue