]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
Fix on Bug PAL5832
authorsmh <smh@opencascade.com>
Fri, 7 May 2004 12:42:20 +0000 (12:42 +0000)
committersmh <smh@opencascade.com>
Fri, 7 May 2004 12:42:20 +0000 (12:42 +0000)
 - V1_4_1a and current: There are problems with selection data on elements

src/SALOMEGUI/SALOMEGUI.cxx

index ba9f6a56e75b5bd4a2bda15e105d62c638302bb9..1092b50f816422db3df75562b823a7cce233fd45 100644 (file)
@@ -27,6 +27,8 @@
 //  $Header$
 
 #include "SALOMEGUI.h"
+#include "QAD_Desktop.h"
+
 
 //=============================================================================
 /*!
@@ -135,6 +137,15 @@ void SALOMEGUI::DefinePopup( QString & theContext, QString & theParent, QString
 //=============================================================================
 bool SALOMEGUI::ActiveStudyChanged( QAD_Desktop* parent )
 {
+  //static QAD_Study* aPrevStudy = NULL;
+  //QAD_Study* aStudy = parent->getActiveStudy();
+  //if(!aPrevStudy)
+  //  aPrevStudy = aStudy;
+  //if(aStudy != aPrevStudy){
+  //  emit SignalCloseAllDialogs();
+  //  aPrevStudy = aStudy;
+  //}
+  emit SignalCloseAllDialogs();
   return true;
 }