Allow ImGui to process events if the overlay is hidden

This is used for the notifications when overlay is off.
merge-requests/28/head
Nemirtingas 2019-10-15 11:11:30 +02:00
parent ce79df1c26
commit cf3dea2bbe
1 changed files with 13 additions and 13 deletions

View File

@ -133,9 +133,9 @@ LRESULT CALLBACK Windows_Hook::HookWndProc(HWND hWnd, UINT uMsg, WPARAM wParam,
} }
} }
ImGui_ImplWin32_WndProcHandler(hWnd, uMsg, wParam, lParam);
if (show) if (show)
{ {
ImGui_ImplWin32_WndProcHandler(hWnd, uMsg, wParam, lParam);
if (IgnoreMsg(uMsg)) if (IgnoreMsg(uMsg))
return 0; return 0;
} }