From: eficas <> Date: Thu, 18 Aug 2005 08:18:27 +0000 (+0000) Subject: PN : pour affichage groupe/commande X-Git-Tag: CC_param_poursuite~88 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=4fe48b3f27c801548aae5fa90e0e08f9838b3cfa;p=modules%2Feficas.git PN : pour affichage groupe/commande --- diff --git a/Editeur/options.py b/Editeur/options.py index 3e725e2c..18cb3ffb 100644 --- a/Editeur/options.py +++ b/Editeur/options.py @@ -55,9 +55,15 @@ class OPTIONS: parent=panel.parent if parent != None : parent.create_panel(parent.node_selected) - parent.panel_courant.nb.selectpage("Commande") + # si on a un panel avec plusieurs onglets + # on affiche Commande + try : + parent.panel_courant.nb.selectpage("Commande") + except : + pass def affichage_alpha(self): + global affichage_commandes affichage_commandes="alphabetic" if hasattr(panels,'panneauCommande'): @@ -65,7 +71,12 @@ class OPTIONS: parent=panel.parent if parent != None : parent.create_panel(parent.node_selected) - parent.panel_courant.nb.selectpage("Commande") + # si on a un panel avec plusieurs onglets + # on affiche Commande + try : + parent.panel_courant.nb.selectpage("Commande") + except : + pass def change_fond(self): from tkColorChooser import askcolor diff --git a/Editeur/panels.py b/Editeur/panels.py index de19cf52..e37e19f3 100644 --- a/Editeur/panels.py +++ b/Editeur/panels.py @@ -51,6 +51,8 @@ class Panel(Frame) : self.place(x=0,y=0,relheight=1,relwidth=1) self.creer_boutons() self.init() + global panneauCommande + panneauCommande=self def __del__(self): """ appele a la destruction du panel """