Reduce hold for Toggle desktop mode to 2s

This commit is contained in:
Kamil Trzciński 2022-11-29 00:12:55 +01:00
parent 3176ac09dc
commit d9877e5491
2 changed files with 2 additions and 2 deletions

View file

@ -206,7 +206,7 @@ Of course you will have access to all described shortcuts.
|----------------------------|------------------------|------------------------|------------------------|------------------------|
| X360 Controller | Not connected | Connected | Not connected | Not connected |
| Options (hold for 1s) | Switch to next profile | Switch to next profile | Switch to next profile | Switch to next profile |
| Options (hold for 3s) | Toggle desktop mode | Toggle desktop mode | | |
| 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 |

View file

@ -10,7 +10,7 @@ namespace SteamController.Profiles
public const String ShortcutConsumed = "ShortcutsProfile";
public readonly TimeSpan HoldForShorcuts = TimeSpan.FromMilliseconds(200);
private readonly TimeSpan HoldToSwitchProfile = TimeSpan.FromSeconds(1);
private readonly TimeSpan HoldToSwitchDesktop = TimeSpan.FromSeconds(3);
private readonly TimeSpan HoldToSwitchDesktop = TimeSpan.FromSeconds(2);
public override Status Run(Context c)
{