diff --git a/Source/Engine/Platform/Windows/WindowsInput.cpp b/Source/Engine/Platform/Windows/WindowsInput.cpp index 80bff7ca5..0ec0b5e25 100644 --- a/Source/Engine/Platform/Windows/WindowsInput.cpp +++ b/Source/Engine/Platform/Windows/WindowsInput.cpp @@ -196,6 +196,12 @@ bool WindowsMouse::WndProc(Window* window, const UINT msg, WPARAM wParam, LPARAM switch (msg) { case WM_MOUSEMOVE: + { + OnMouseMove(mousePos, window); + result = true; + break; + } + case WM_NCMOUSEMOVE: { OnMouseMove(mousePos, window); result = true;