Bug 9189:

On any action in SMESH there is update of OB
The update is occured only by actions whose need it
This commit is contained in:
asl 2005-06-17 06:28:52 +00:00
parent 656c73ce33
commit 3c9eecb29e
2 changed files with 4 additions and 1 deletions

View File

@ -1352,6 +1352,7 @@ bool SMESHGUI::OnGUIEvent( int theCommandID )
tr("SMESH_WRN_VIEWER_VTK"), tr("SMESH_WRN_VIEWER_VTK"),
tr("SMESH_BUT_OK")); tr("SMESH_BUT_OK"));
} }
updateObjBrowser();
break; break;
} }
@ -1894,6 +1895,7 @@ bool SMESHGUI::OnGUIEvent( int theCommandID )
} }
} }
} }
updateObjBrowser( true );
break; break;
} }
@ -2279,7 +2281,7 @@ bool SMESHGUI::OnGUIEvent( int theCommandID )
} }
updateObjBrowser(); //updateObjBrowser();
return true; return true;
} }

View File

@ -350,6 +350,7 @@ bool SMESHGUI_EditHypothesesDlg::ClickOnApply()
} }
UpdateControlState(); UpdateControlState();
mySMESHGUI->updateObjBrowser();
return aRes; return aRes;
} }