]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
IPAL9363: unhighlight erased object in 3D viewer
authorjfa <jfa@opencascade.com>
Wed, 20 Jul 2005 08:40:06 +0000 (08:40 +0000)
committerjfa <jfa@opencascade.com>
Wed, 20 Jul 2005 08:40:06 +0000 (08:40 +0000)
src/VISUGUI/VisuGUI.cxx

index 506f77e0127710af97a368ca46936788449b6260..39ae63851a971090ed6eb29e361a0957261c6a96 100644 (file)
@@ -651,6 +651,10 @@ OnErasePrs()
   if(MYDEBUG) MESSAGE("OnErasePrs");
 
   QApplication::setOverrideCursor(Qt::waitCursor);
+
+  SVTK_ViewWindow* vw = GetViewWindow(this);
+  if (vw) vw->unHighlightAll();
+
   SALOME_ListIO aList;
   SalomeApp_SelectionMgr* mgr = GetSelectionMgr(this);
   mgr->selectedObjects(aList);
@@ -661,8 +665,9 @@ OnErasePrs()
     CORBA::Object_var anObject = GetSelectedObj( GetAppStudy(this), anIO->getEntry() );
     ErasePrs(this, anObject, false);
   }
-  if (SVTK_ViewWindow* vw = GetViewWindow( this ))
-    vw->Repaint();
+
+  if (vw) vw->Repaint();
+
   QApplication::restoreOverrideCursor();
 }