Skip to content

Commit

Permalink
[Workspaces] Default hotkey update (#34468)
Browse files Browse the repository at this point in the history
  • Loading branch information
SeraphimaZykova authored Aug 29, 2024
1 parent 31abbd5 commit 62a8a9b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/modules/Workspaces/WorkspacesModuleInterface/dllmain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -365,8 +365,8 @@ class WorkspacesModuleInterface : public PowertoyModuleIface

// 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 `~
};
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public enum SortByProperty
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()
{
Expand Down

0 comments on commit 62a8a9b

Please sign in to comment.