mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-23 19:49:43 +01:00
Fix FZ not forwarding events to next hook (#3044)
This commit is contained in:
@@ -208,7 +208,10 @@ private:
|
||||
event.wParam = wParam;
|
||||
if (s_instance)
|
||||
{
|
||||
return s_instance->HandleKeyboardHookEvent(&event);
|
||||
if (s_instance->HandleKeyboardHookEvent(&event) == 1)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
return CallNextHookEx(NULL, nCode, wParam, lParam);
|
||||
|
||||
Reference in New Issue
Block a user