mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2026-02-11 18:14:23 +01:00
changed win+d to steam+rightstick
This commit is contained in:
parent
6ee4f32ded
commit
0c4c59d557
|
|
@ -91,14 +91,12 @@ namespace SteamController.Profiles.Default
|
|||
|
||||
if (c.Steam.BtnDpadRight.Pressed())
|
||||
{
|
||||
//c.Keyboard.KeyPress(VirtualKeyCode.RETURN); // old!
|
||||
c.Keyboard.KeyPress(VirtualKeyCode.TAB);
|
||||
}
|
||||
|
||||
if (c.Steam.BtnDpadDown.Pressed())
|
||||
{
|
||||
//c.Keyboard.KeyPress(VirtualKeyCode.TAB);
|
||||
c.Keyboard.KeyPress(VirtualKeyCode.LWIN,VirtualKeyCode.VK_D);
|
||||
c.Keyboard.KeyPress(VirtualKeyCode.TAB);
|
||||
}
|
||||
|
||||
if (c.Steam.BtnDpadLeft.Pressed())
|
||||
|
|
@ -106,6 +104,11 @@ namespace SteamController.Profiles.Default
|
|||
c.Keyboard.KeyPress(VirtualKeyCode.ESCAPE);
|
||||
}
|
||||
|
||||
if (c.Steam.BtnRightStickPress.Pressed())
|
||||
{
|
||||
c.Keyboard.KeyPress(VirtualKeyCode.LWIN,VirtualKeyCode.VK_D);
|
||||
}
|
||||
|
||||
// Additional binding for tool hotkeys (Lossless Fullscreen is nice)
|
||||
if (c.Steam.BtnDpadUp.Pressed())
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue