From: vsr Date: Thu, 10 Feb 2011 13:09:43 +0000 (+0000) Subject: 0021180: EDF 1772 SMESH: Set of hypothesis in 1D X-Git-Tag: StartingPortingMED3~64 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=a91bb00475c75f7fde889c7d63a617a2a7b74c65;p=modules%2Fsmesh.git 0021180: EDF 1772 SMESH: Set of hypothesis in 1D Additional change: enable tabs if no shape is selected --- diff --git a/src/SMESHGUI/SMESHGUI_MeshOp.cxx b/src/SMESHGUI/SMESHGUI_MeshOp.cxx index 48806273d..1e314d045 100644 --- a/src/SMESHGUI/SMESHGUI_MeshOp.cxx +++ b/src/SMESHGUI/SMESHGUI_MeshOp.cxx @@ -474,7 +474,7 @@ void SMESHGUI_MeshOp::selectionDone() { // Enable tabs according to shape dimension - int shapeDim = -1; + int shapeDim = 3; QStringList aGEOMs; myDlg->selectedObject(SMESHGUI_MeshDlg::Geom, aGEOMs); @@ -504,7 +504,7 @@ void SMESHGUI_MeshOp::selectionDone() } if (aSeq->length() > 0) { - //shapeDim = 0; + shapeDim = -1; for (int iss = 0; iss < aSeq->length() && shapeDim < 3; iss++) { GEOM::GEOM_Object_var aGeomVar = aSeq[iss]; switch ( aGeomVar->GetShapeType() ) {