From 53f60347155b357bb68f68b817fe00f083ff3677 Mon Sep 17 00:00:00 2001 From: Sebastian Pape <pape@vr.rwth-aachen.de> Date: Mon, 2 Sep 2024 14:13:26 +0200 Subject: [PATCH] Fixing formatting issues --- .../Interactors/RWTHVRWidgetInteractionComponent.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/RWTHVRToolkit/Private/Interaction/Interactors/RWTHVRWidgetInteractionComponent.cpp b/Source/RWTHVRToolkit/Private/Interaction/Interactors/RWTHVRWidgetInteractionComponent.cpp index bae88c0..23e0727 100644 --- a/Source/RWTHVRToolkit/Private/Interaction/Interactors/RWTHVRWidgetInteractionComponent.cpp +++ b/Source/RWTHVRToolkit/Private/Interaction/Interactors/RWTHVRWidgetInteractionComponent.cpp @@ -51,14 +51,14 @@ void URWTHVRWidgetInteractionComponent::SetupPlayerInput(UInputComponent* Player return; } - if(WidgetLeftClickInputAction) + if (WidgetLeftClickInputAction) { EI->BindAction(WidgetLeftClickInputAction, ETriggerEvent::Started, this, &URWTHVRWidgetInteractionComponent::OnBeginLeftClick); EI->BindAction(WidgetLeftClickInputAction, ETriggerEvent::Completed, this, &URWTHVRWidgetInteractionComponent::OnEndLeftClick); } - if(WidgetRightClickInputAction) + if (WidgetRightClickInputAction) { EI->BindAction(WidgetRightClickInputAction, ETriggerEvent::Started, this, &URWTHVRWidgetInteractionComponent::OnBeginRightClick); -- GitLab