Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
RWTH VR Toolkit
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LuFG VR VIS
VR-Group
Unreal-Development
Plugins
RWTH VR Toolkit
Merge requests
!7
fix loading/getting of cluster manager if DisplayCluster module was not loaded yet
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
fix loading/getting of cluster manager if DisplayCluster module was not loaded yet
fix/display-cluster-loading
into
4.26
Overview
0
Commits
1
Pipelines
0
Changes
2
Merged
fix loading/getting of cluster manager if DisplayCluster module was not loaded yet
Jan Delember
requested to merge
fix/display-cluster-loading
into
4.26
Sep 9, 2021
Overview
0
Commits
1
Pipelines
0
Changes
2
0
0
Merge request reports
Compare
4.26
4.26 (base)
and
latest version
latest version
64922ff4
1 commit,
Sep 9, 2021
2 files
+
6
−
6
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Source/Calibratio/Private/Calibratio.cpp
+
3
−
3
View file @ 64922ff4
Edit in single-file editor
Open in Web IDE
Show full file
@@ -25,8 +25,8 @@ void FCalibratioModule::StartupModule ()
/* Register cluster event listening */
IDisplayCluster
ClusterManager
*
ClusterManager
=
IDisplayCluster
::
Get
().
GetClusterMgr
(
);
if
(
ClusterManag
er
&&
!
ClusterEventListenerDelegate
.
IsBound
())
IDisplayCluster
*
DisplayCluster
=
FModuleManager
::
LoadModulePtr
<
IDisplayCluster
>
(
IDisplayCluster
::
ModuleName
);
if
(
DisplayClust
er
&&
!
ClusterEventListenerDelegate
.
IsBound
())
{
ClusterEventListenerDelegate
=
FOnClusterEventJsonListener
::
CreateLambda
([](
const
FDisplayClusterClusterEventJson
&
Event
)
{
@@ -35,7 +35,7 @@ void FCalibratioModule::StartupModule ()
SpawnCalibratio
();
}
});
ClusterM
anager
->
AddClusterEventJsonListener
(
ClusterEventListenerDelegate
);
DisplayCluster
->
Get
ClusterM
gr
()
->
AddClusterEventJsonListener
(
ClusterEventListenerDelegate
);
}
}
void
FCalibratioModule
::
ShutdownModule
()
Loading