From 4d138a9bc0669c6910d0dc979d04e30cdb43864a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20Trzci=C5=84ski?= Date: Sat, 10 Dec 2022 10:50:31 +0100 Subject: [PATCH] Swap `STEAM+Menu` and `STEAM+Options` --- RELEASE.md | 1 + SteamController/Profiles/DefaultShortcutsProfile.cs | 4 ++-- docs/shortcuts.md | 4 ++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/RELEASE.md b/RELEASE.md index f163b94..f12f03b 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -21,3 +21,4 @@ - Detect SAS (Secure Attention Sequence) in a way that does not prevent screen sleep - Recreate X360 device on fatal failure (might happen after resume) - DEBUG allows to keep X360 controller always connected +- Swap `STEAM+Menu` and `STEAM+Options`. It makes more sense to switch windows with STEAM+3 horizontal lines diff --git a/SteamController/Profiles/DefaultShortcutsProfile.cs b/SteamController/Profiles/DefaultShortcutsProfile.cs index 9a32b79..e6dbed3 100644 --- a/SteamController/Profiles/DefaultShortcutsProfile.cs +++ b/SteamController/Profiles/DefaultShortcutsProfile.cs @@ -56,13 +56,13 @@ namespace SteamController.Profiles protected virtual bool AdditionalShortcuts(Context c) { - if (c.Steam.BtnMenu.Pressed()) + if (c.Steam.BtnOptions.Pressed()) { c.Keyboard.KeyPress(VirtualKeyCode.LWIN, VirtualKeyCode.TAB); return true; } - if (c.Steam.BtnOptions.Pressed()) + if (c.Steam.BtnMenu.Pressed()) { c.Keyboard.KeyPress(VirtualKeyCode.F11); return true; diff --git a/docs/shortcuts.md b/docs/shortcuts.md index 12f7675..5858bee 100644 --- a/docs/shortcuts.md +++ b/docs/shortcuts.md @@ -6,8 +6,8 @@ | Options (hold for 1s) | Switch to next profile | Switch to next profile | Switch to next profile | Switch to next profile | | Options (hold for 2s) | Toggle desktop mode | Toggle desktop mode | | | | STEAM + 3 dots | CTRL + SHIFT + ESCAPE | CTRL + SHIFT + ESCAPE | CTRL + SHIFT + ESCAPE | CTRL + SHIFT + ESCAPE | -| STEAM + Menu | WIN + TAB | WIN + TAB | WIN + TAB | WIN + TAB | -| STEAM + Options | F11 | F11 | F11 | F11 | +| STEAM + Options | WIN + TAB | WIN + TAB | WIN + TAB | WIN + TAB | +| STEAM + Menu | F11 | F11 | F11 | F11 | | STEAM + A | RETURN | RETURN | | RETURN | | STEAM + B (hold for 1s) | ALT + F4 | ALT + F4 | | ALT + F4 | | STEAM + B (hold for 3s) | Kill active process | Kill active process | | Kill active process |