]> SALOME platform Git repositories - tools/eficas.git/commitdiff
Salome HOME
PN : Choix automatique du concept lorsqu'un seul choix est possible.
authoreficas <>
Thu, 27 Feb 2003 10:08:36 +0000 (10:08 +0000)
committereficas <>
Thu, 27 Feb 2003 10:08:36 +0000 (10:08 +0000)
fiche E02002-162

Editeur/composimp.py

index a692a9da4f65a651f041d3d0df7ef80c7d65ee9b..1d38ce38dd0cde073d02bf0fefbcf6cd5c709b7d 100644 (file)
@@ -807,6 +807,11 @@ class UNIQUE_ASSD_Panel(UNIQUE_Panel):
       # Remplissage du panneau
       self.valeur_choisie = StringVar()
       self.valeur_choisie.set('')
+      min,max =  self.node.item.GetMinMax()
+      if (min == 1 and min == max and len(liste_noms_sd)==1):
+         self.valeur_choisie.set(liste_noms_sd[0])
+          self.valid_valeur()
+        
       self.frame_valeur = Frame(page)
       self.frame_valeur.pack(fill='both',expand=1)
       self.frame_valeur.bind("<Button-3>",lambda e,s=self,a=bulle_aide : s.parent.appli.affiche_aide(e,a))