From 64e9cf688473e1661c5873c2b1bc8105b66e850c Mon Sep 17 00:00:00 2001 From: HifiExperiments <53453710+HifiExperiments@users.noreply.github.com> Date: Fri, 29 Jan 2021 17:10:56 -0800 Subject: [PATCH] Update interface/src/ui/InteractiveWindow.cpp Co-authored-by: David Rowe --- interface/src/ui/InteractiveWindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/src/ui/InteractiveWindow.cpp b/interface/src/ui/InteractiveWindow.cpp index 420efbf448..daf80acf00 100644 --- a/interface/src/ui/InteractiveWindow.cpp +++ b/interface/src/ui/InteractiveWindow.cpp @@ -363,9 +363,9 @@ InteractiveWindow::InteractiveWindow(const QString& sourceUrl, const QVariantMap object->setProperty(SOURCE_PROPERTY, sourceURL); }; - if (auto offscreenUi = DependencyManager::get()) { + if (auto offscreenUI = DependencyManager::get()) { // Build the event bridge and wrapper on the main thread - offscreenUi->loadInNewContext(CONTENT_WINDOW_QML, objectInitLambda, contextInitLambda); + offscreenUI->loadInNewContext(CONTENT_WINDOW_QML, objectInitLambda, contextInitLambda); } } }