From 031c541680501c15d4a4c6ed379cc866b8efbaad Mon Sep 17 00:00:00 2001 From: Sebastian Pape <pape@vr.rwth-aachen.de> Date: Thu, 22 Aug 2024 15:56:42 +0200 Subject: [PATCH] Fixing resizing issue --- Source/DasherVR/Private/SDasherWidget.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/DasherVR/Private/SDasherWidget.cpp b/Source/DasherVR/Private/SDasherWidget.cpp index 0690f3d..dce12ea 100644 --- a/Source/DasherVR/Private/SDasherWidget.cpp +++ b/Source/DasherVR/Private/SDasherWidget.cpp @@ -303,12 +303,13 @@ void SDasherWidget::Tick(const FGeometry& AllotedGeometry, const double InCurren SCompoundWidget::Tick(AllotedGeometry, InCurrentTime, InDeltaTime); //don't tick in the editor - if (!IsEditor && !InputPaused && !URWTHVRUtilities::IsPrimaryNode()) return; + if (!IsEditor && !InputPaused) return; if(!URWTHVRUtilities::IsRoomMountedMode()){ DasherMainInterface->Tick(static_cast<unsigned long>(InCurrentTime * 1000.0)); //we need to provide ticks in milliseconds } else + if(URWTHVRUtilities::IsPrimaryNode()) { FDisplayClusterClusterEventJson ClusterEvent; ClusterEvent.Category = "Dasher"; -- GitLab