X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=InterfaceQT4%2Fcompofact.py;h=ad38ea5b4ba308f4436333f92f6002f243940662;hb=3fd4828d38ccea805a15c45e0517bf15b4e8f828;hp=dbda421822a23a29561086476bd181d16e54f6b1;hpb=16d5922e798b1254eb558678612711d72ed38b32;p=tools%2Feficas.git diff --git a/InterfaceQT4/compofact.py b/InterfaceQT4/compofact.py index dbda4218..ad38ea5b 100644 --- a/InterfaceQT4/compofact.py +++ b/InterfaceQT4/compofact.py @@ -36,18 +36,19 @@ class Node(browser.JDCNode,typeNode.PopUpMenuNodePartiel): from monMCFactPanel import MonMCFactPanel return MonMCFactPanel(self,parent=self.editor) - def getPanelGroupe(self,parentQt): + def getPanelGroupe(self,parentQt,commande): maDefinition=self.item.get_definition() monObjet=self.item.object monNom=self.item.nom + maCommande=commande if hasattr(parentQt,'niveau'): self.niveau=parentQt.niveau+1 else : self.niveau=1 if hasattr(self,'plie') and self.plie==True : from monWidgetFactPlie import MonWidgetFactPlie - widget=MonWidgetFactPlie(self,self.editor,parentQt,maDefinition,monObjet,self.niveau) + widget=MonWidgetFactPlie(self,self.editor,parentQt,maDefinition,monObjet,self.niveau,maCommande) else: from monWidgetFact import MonWidgetFact - widget=MonWidgetFact(self,self.editor,parentQt,maDefinition,monObjet,self.niveau) + widget=MonWidgetFact(self,self.editor,parentQt,maDefinition,monObjet,self.niveau,maCommande) return widget