From 33d210b79376fd13aa6b6f21b695518775d5e7a7 Mon Sep 17 00:00:00 2001 From: nvsickle Date: Mon, 26 Apr 2021 12:53:52 -0700 Subject: [PATCH] Fix "Configure Layout..." being greyed out in the viewport menu --- Code/Sandbox/Editor/ViewPane.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Code/Sandbox/Editor/ViewPane.cpp b/Code/Sandbox/Editor/ViewPane.cpp index 52146bdf09..c66a5f3f38 100644 --- a/Code/Sandbox/Editor/ViewPane.cpp +++ b/Code/Sandbox/Editor/ViewPane.cpp @@ -589,7 +589,7 @@ void CLayoutViewPane::ShowTitleMenu() action->setChecked(IsFullscreen()); action = root.addAction(tr("Configure Layout...")); - if (AZ::Interface::Get()) + if (!CViewManager::IsMultiViewportEnabled()) { action->setDisabled(true); }