mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-12 00:29:17 +05:00
Merge branch 'master' into gni/adaptation
This commit is contained in:
commit
94b4f20a65
@ -94,6 +94,7 @@ void StdMeshers_LayerDistribution::SetLayerDistribution(SMESH_Hypothesis* hyp1D)
|
||||
|
||||
ostream & StdMeshers_LayerDistribution::SaveTo(ostream & save)
|
||||
{
|
||||
save << "StdMeshers_LayerDistribution"; // just to enable "Edit" in pop-up menu
|
||||
return save;
|
||||
}
|
||||
|
||||
|
@ -207,7 +207,11 @@ void StdMeshersGUI_LayerDistributionParamWdg::onEdit()
|
||||
if ( !editor ) return;
|
||||
|
||||
if ( myDlg )
|
||||
myDlg->hide();
|
||||
{
|
||||
//myDlg->hide(); -- pb: show() does not work
|
||||
myDlg->setWindowTitle( tr( "SMESH_HYPOTHESIS" ));
|
||||
myDlg->setEnabled(false);
|
||||
}
|
||||
|
||||
try {
|
||||
QWidget* parent = this;
|
||||
@ -223,5 +227,8 @@ void StdMeshersGUI_LayerDistributionParamWdg::onEdit()
|
||||
void StdMeshersGUI_LayerDistributionParamWdg::onEdited( int result )
|
||||
{
|
||||
if ( myDlg )
|
||||
myDlg->show();
|
||||
{
|
||||
//myDlg->show(); does not work
|
||||
myDlg->setEnabled(true);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user