From 631ffb5b5e1641ce0065dde0f93d44a9b5b68431 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Timoth=C3=A9e=20Couble?= <timothee.couble@kitware.com>
Date: Tue, 27 Sep 2022 11:02:12 +0200
Subject: [PATCH] [fix] Restore full screen option (F11)

---
 Application/vvMainWindow.cxx | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/Application/vvMainWindow.cxx b/Application/vvMainWindow.cxx
index 023538464..f7764d6e1 100644
--- a/Application/vvMainWindow.cxx
+++ b/Application/vvMainWindow.cxx
@@ -231,6 +231,11 @@ void vvMainWindow::setupPVGUI()
   pqApplicationCore::instance()->registerManager(
     "COLOR_EDITOR_PANEL", this->Internals->colorMapEditorDock);
 
+  // Set the central widget
+  pqTabbedMultiViewWidget* mv = new pqTabbedMultiViewWidget;
+  mv->setTabVisibility(false);
+  this->setCentralWidget(mv);
+
   // Provide access to the find data panel for the application.
   // pqApplicationCore::instance()->registerManager("FIND_DATA_PANEL",
   // this->Internals->findDataDock); // Unused
@@ -323,11 +328,6 @@ void vvMainWindow::setupLVGUI()
   // Not necessarilly verbatim Paraview
   // Feel Free to modify this in your LidarView-based app if you really do not like the look
 
-  // Set the central widget
-  pqTabbedMultiViewWidget* mv = new pqTabbedMultiViewWidget;
-  mv->setTabVisibility(false);
-  this->setCentralWidget(mv);
-
   // Output Window Dock
   this->Internals->outputWidgetDock->setWidget(this->Internals->outputWidget);
   this->tabifyDockWidget(this->Internals->informationDock, this->Internals->outputWidgetDock);
-- 
GitLab