Remove "Handler Down" debug message

This commit is contained in:
Steve Streeting 2023-07-11 16:30:58 +01:00
parent 8f6180969e
commit 5dc3b1f222

View File

@ -135,7 +135,7 @@ FReply UImGuiInputHandler::OnMouseButtonDown(const FPointerEvent& MouseEvent)
FImGuiContextProxy* Proxy = ModuleManager->GetContextManager().GetContextProxy(0); FImGuiContextProxy* Proxy = ModuleManager->GetContextManager().GetContextProxy(0);
if (Proxy) if (Proxy)
{ {
GEngine->AddOnScreenDebugMessage(15, 10, Proxy->WantsMouseCapture() ? FColor::Green : FColor::Red, TEXT("Handler Down")); //GEngine->AddOnScreenDebugMessage(15, 10, Proxy->WantsMouseCapture() ? FColor::Green : FColor::Red, TEXT("Handler Down"));
return ToReply(Proxy->WantsMouseCapture()); return ToReply(Proxy->WantsMouseCapture());
} }
} }