Salome HOME
small fix
authorboulant <boulant>
Fri, 28 Oct 2011 16:58:35 +0000 (16:58 +0000)
committerboulant <boulant>
Fri, 28 Oct 2011 16:58:35 +0000 (16:58 +0000)
src/SMESH_PY/guihelper.py

index 3969835b9b5e645ac07e5935fb3985b948927aa5..6c727806d426c58b9e46d10758284cfe611fcf4d 100644 (file)
@@ -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()