mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-12-28 18:30:35 +05:00
Fix for bug IPAL11949(TC: Just created nodes are invisible).
This commit is contained in:
parent
bbbdb7f3ef
commit
123114e554
@ -89,6 +89,10 @@ SMESHDS_Command* SMESHDS_Script::getCommand(const SMESHDS_CommandType aType)
|
||||
//=======================================================================
|
||||
void SMESHDS_Script::AddNode(int NewNodeID, double x, double y, double z)
|
||||
{
|
||||
if(myIsEmbeddedMode){
|
||||
myIsModified = true;
|
||||
return;
|
||||
}
|
||||
getCommand(SMESHDS_AddNode)->AddNode(NewNodeID, x, y, z);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user