mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2026-01-22 08:20:26 +01:00
Fix code formatting for DefaultGuideShortcutsProfile
This commit is contained in:
parent
0aa535800c
commit
4c016b33b9
|
|
@ -103,10 +103,11 @@ namespace SteamController.Profiles
|
|||
{
|
||||
c.Keyboard.KeyPress(VirtualKeyCode.ESCAPE);
|
||||
}
|
||||
|
||||
|
||||
// Additional binding for tool hotkeys (Lossless Fullscreen is nice)
|
||||
if (c.Steam.BtnDpadUp.HoldOnce(ShortcutConsumed)) {
|
||||
c.Keyboard.KeyPress(new List<VirtualKeyCode> { VirtualKeyCode.LCONTROL, VirtualKeyCode.LMENU }, VirtualKeyCode.VK_U);
|
||||
if (c.Steam.BtnDpadUp.HoldOnce(ShortcutConsumed))
|
||||
{
|
||||
c.Keyboard.KeyPress(new VirtualKeyCode[] { VirtualKeyCode.LCONTROL, VirtualKeyCode.LMENU }, VirtualKeyCode.VK_U);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue