From: boulant Date: Fri, 28 Oct 2011 16:58:35 +0000 (+0000) Subject: small fix X-Git-Tag: V6_5_0a1~246 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=fb93a51d7ddbdbce34e7d9b5e2606e6dbcb06964;p=modules%2Fsmesh.git small fix --- diff --git a/src/SMESH_PY/guihelper.py b/src/SMESH_PY/guihelper.py index 3969835b9..6c727806d 100644 --- a/src/SMESH_PY/guihelper.py +++ b/src/SMESH_PY/guihelper.py @@ -94,7 +94,7 @@ def displaySmeshObject(entry): Display the SMESH object associated to the specified entry (the entry is the identifier of an item in the objects browser). ''' - if not SalomeGUI.hasDesktop(): + if not helper.SalomeGUI.hasDesktop(): print "displayGeomObjects: no desktop available" return SmeshGUI.CreateAndDisplayActor(entry) @@ -158,6 +158,11 @@ def TEST_selectAndExport_02(): exportFileName = "/tmp/"+myName+".unv" myMesh.ExportUNV(exportFileName) +def TEST_display(): + mySObject, myEntry = helper.getSObjectSelected() + displaySmeshObject(myEntry) + if __name__ == "__main__": TEST_selectAndExport_01() TEST_selectAndExport_02() + TEST_display()