Skip to content

Commit 86e0ef9

Browse files
committed
修改锁屏后无法使用密码解锁的问题
1 parent cd7a20b commit 86e0ef9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/ComputerLock/Platforms/SystemKeyHook.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,7 @@ private bool IsSystemKey(int vkCode)
9595
{
9696
return vkCode == VK_LWIN || vkCode == VK_RWIN ||
9797
vkCode == VK_LSHIFT || vkCode == VK_RSHIFT ||
98-
vkCode == VK_LCONTROL || vkCode == VK_RCONTROL ||
99-
vkCode == VK_LMENU || vkCode == VK_RMENU ||
98+
vkCode == VK_LCONTROL || vkCode == VK_RCONTROL ||
10099
vkCode == VK_TAB;
101100
}
102101

0 commit comments

Comments
 (0)