[Workspaces] Default hotkey update (#34468)

This commit is contained in:
Seraphima Zykova 2024-08-29 09:48:46 +02:00 committed by GitHub
parent 31abbd54a4
commit 62a8a9be52
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -365,8 +365,8 @@ private:
// Hotkey to invoke the module
HotkeyEx m_hotkey{
.modifiersMask = MOD_SHIFT | MOD_WIN,
.vkCode = 0x4F, // O key;
.modifiersMask = MOD_CONTROL | MOD_WIN,
.vkCode = 0xC0, // VK_OEM_3 key; usually `~
};
};

View File

@ -16,7 +16,7 @@ namespace Microsoft.PowerToys.Settings.UI.Library
Name,
}
public static readonly HotkeySettings DefaultHotkeyValue = new HotkeySettings(true, false, false, true, 0x4F);
public static readonly HotkeySettings DefaultHotkeyValue = new HotkeySettings(true, true, false, false, 0xC0);
public WorkspacesProperties()
{