diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index 4fb370b756..d7005f2c0d 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -6782,6 +6782,13 @@ void Application::updateDisplayMode() { if (!active) { qFatal("Failed to activate fallback plugin"); } + + // We've changed the selection - it should be reflected in the menu + QAction* action = menu->getActionForOption(newDisplayPlugin->getName()); + if (!action) { + qFatal("Failed to find activated plugin"); + } + action->setChecked(true); } _offscreenContext->makeCurrent();