diff --git a/interface/src/devices/TV3DManager.cpp b/interface/src/devices/TV3DManager.cpp index d309c33ed3..c00168931f 100644 --- a/interface/src/devices/TV3DManager.cpp +++ b/interface/src/devices/TV3DManager.cpp @@ -27,6 +27,12 @@ bool TV3DManager::isConnected() { } void TV3DManager::connect() { + Application* app = Application::getInstance(); + int width = app->getGLWidget()->width(); + int height = app->getGLWidget()->height(); + Camera& camera = *app->getCamera(); + + configureCamera(camera, width, height); }