From 1a558db360a84dcacd7bfaf1212ef75c6e4939fd Mon Sep 17 00:00:00 2001 From: eficas <> Date: Fri, 11 Mar 2005 15:03:23 +0000 Subject: [PATCH] PN bug notation scientifique --- Editeur/widgets.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Editeur/widgets.py b/Editeur/widgets.py index 5a33d958..30cabe74 100644 --- a/Editeur/widgets.py +++ b/Editeur/widgets.py @@ -743,7 +743,11 @@ class ListeChoix : mot=mot+"," else: premier=0 - mot=mot+str(val) + valtexte = self.parent.get_valeur_texte(val) + if valtexte != "" : + mot=mot+valtexte + else: + mot=mot+str(val) mot=mot+")" else: mot=`objet` -- 2.39.2