Fix for bug PAL13338 : EDF PAL266 SMESH: no mesh update via Display Only after editing the hypothesis.

This commit is contained in:
mkr 2006-09-25 09:01:06 +00:00
parent ffd567ddfa
commit ecf147ce97

View File

@ -1217,6 +1217,11 @@ bool SMESHGUI::OnGUIEvent( int theCommandID )
}
}
}
// PAL13338 -->
if ( ( theCommandID==301 || theCommandID==302 ) && !checkLock(aStudy) )
SMESH::UpdateView();
// PAL13338 <--
if (anAction == SMESH::eErase) {
SALOME_ListIO l1;
@ -1224,6 +1229,7 @@ bool SMESHGUI::OnGUIEvent( int theCommandID )
}
else
aSel->setSelectedObjects( to_process );
break;
}