diff --git a/SteamController/Profiles/Default/GuideShortcutsProfile.cs b/SteamController/Profiles/Default/GuideShortcutsProfile.cs index dabba35..a28e7ff 100644 --- a/SteamController/Profiles/Default/GuideShortcutsProfile.cs +++ b/SteamController/Profiles/Default/GuideShortcutsProfile.cs @@ -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()) {