Salome HOME
Minor change: avoid bad temporary positioning of the ParaView panels at PARAVIS activ...
authorvsr <vsr@opencascade.com>
Thu, 16 Oct 2014 14:50:39 +0000 (18:50 +0400)
committervsr <vsr@opencascade.com>
Thu, 16 Oct 2014 14:50:39 +0000 (18:50 +0400)
src/PVGUI/PVGUI_Module_widgets.cxx

index e438a97d997a69ea83bd7995a2e38b5deee1136e..e171081fcb92d476d9f393c53e77e599cd552224 100644 (file)
@@ -115,6 +115,7 @@ void PVGUI_Module::setupDockWidgets()
   pqPipelineBrowserWidget* browser = guiElements->getPipelineBrowserWidget();
   pipelineBrowserDock->setWidget(browser);
   myDockWidgets[pipelineBrowserDock] = true;
+  pipelineBrowserDock->hide();
 
   // Properties dock (previously called OBJECT_INSPECTOR)
   QDockWidget* propertiesDock = new QDockWidget( tr( "TTL_OBJECT_INSPECTOR" ), desk );
@@ -129,8 +130,8 @@ void PVGUI_Module::setupDockWidgets()
   QAction* tempDeleteAction = new QAction(this);
   pqDeleteReaction* handler = new pqDeleteReaction(tempDeleteAction);
   handler->connect(propertiesPanel, SIGNAL(deleteRequested(pqPipelineSource*)), SLOT(deleteSource(pqPipelineSource*)));
-
   myDockWidgets[propertiesDock] = true;
+  propertiesDock->hide();
 
   // Information dock
   QDockWidget* informationDock = new QDockWidget(tr( "TTL_INFORMATION" ), desk);