Skip to content

Commit

Permalink
remove [ in alpha key handle logic
Browse files Browse the repository at this point in the history
  • Loading branch information
fanlumaster committed Dec 3, 2023
1 parent a95f145 commit 26684e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/hook/ime_hook.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -177,8 +177,8 @@ LRESULT CALLBACK KBDHook(int nCode, WPARAM wParam, LPARAM lParam)
/*
拼音码的处理
*/
// 字母键和 [ 符号
if (std::isalpha(c) || s->vkCode == VK_OEM_4)
// 字母键
if (std::isalpha(c))
{
if (fCtrlDown)
{
Expand Down

0 comments on commit 26684e1

Please sign in to comment.