From 7768cfd38f698a6997b4b9a5836ed1b4ea965e58 Mon Sep 17 00:00:00 2001 From: Arnaud Jamin Date: Mon, 8 Jan 2024 09:06:36 -0500 Subject: [PATCH] CogImGui: Fix gamepad sticks not forwarded in some cases --- .../Cog/Source/CogImgui/Private/CogImguiInputCatcherWidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugins/Cog/Source/CogImgui/Private/CogImguiInputCatcherWidget.cpp b/Plugins/Cog/Source/CogImgui/Private/CogImguiInputCatcherWidget.cpp index f1b5f06..b3bf534 100644 --- a/Plugins/Cog/Source/CogImgui/Private/CogImguiInputCatcherWidget.cpp +++ b/Plugins/Cog/Source/CogImgui/Private/CogImguiInputCatcherWidget.cpp @@ -69,7 +69,7 @@ FReply SCogImguiInputCatcherWidget::OnKeyUp(const FGeometry& MyGeometry, const F //-------------------------------------------------------------------------------------------------------------------------- FReply SCogImguiInputCatcherWidget::OnAnalogValueChanged(const FGeometry& MyGeometry, const FAnalogInputEvent& AnalogInputEvent) { - return FReply::Handled(); + return FReply::Unhandled(); } //--------------------------------------------------------------------------------------------------------------------------