From 9321cf89d3ea11b14d0014a9b467555302ef33af Mon Sep 17 00:00:00 2001 From: Seth Alves Date: Wed, 1 May 2019 07:20:52 -0700 Subject: [PATCH] allow independent camera to be set by scripts --- interface/src/Application.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index 2fdf7b6960..03677f7784 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -5804,7 +5804,8 @@ void Application::cameraModeChanged() { Menu::getInstance()->setIsOptionChecked(MenuOption::FullscreenMirror, true); break; default: - break; + // we don't have menu items for the others, so just leave it alone. + return; } cameraMenuChanged(); }