From 4fe48b3f27c801548aae5fa90e0e08f9838b3cfa Mon Sep 17 00:00:00 2001 From: eficas <> Date: Thu, 18 Aug 2005 08:18:27 +0000 Subject: [PATCH] PN : pour affichage groupe/commande --- Editeur/options.py | 15 +++++++++++++-- Editeur/panels.py | 2 ++ 2 files changed, 15 insertions(+), 2 deletions(-) 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 """ -- 2.39.2