From 6020dae9891c6f1d658cf27cd6632d7dbebf8df2 Mon Sep 17 00:00:00 2001 From: eficas <> Date: Thu, 27 Feb 2003 10:08:36 +0000 Subject: [PATCH] PN : Choix automatique du concept lorsqu'un seul choix est possible. fiche E02002-162 --- Editeur/composimp.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Editeur/composimp.py b/Editeur/composimp.py index a692a9da..1d38ce38 100644 --- a/Editeur/composimp.py +++ b/Editeur/composimp.py @@ -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("",lambda e,s=self,a=bulle_aide : s.parent.appli.affiche_aide(e,a)) -- 2.39.2