ProjectNodeEditor.py
changeset 746 2e09777a40d3
parent 743 4645a3a398ad
child 756 35cd28825be7
--- a/ProjectNodeEditor.py	Tue May 22 22:29:43 2012 +0200
+++ b/ProjectNodeEditor.py	Wed May 23 10:37:43 2012 +0200
@@ -1,6 +1,7 @@
 
 import wx
 
+from controls import EditorPanel
 from ConfTreeNodeEditor import ConfTreeNodeEditor, WINDOW_COLOUR
 
 class ProjectNodeEditor(ConfTreeNodeEditor):
@@ -33,8 +34,6 @@
         self.ParamsEditorSizer.AddSizer(self.ConfNodeParamsSizer, 0, border=5, 
                                         flag=wx.LEFT|wx.RIGHT|wx.BOTTOM)
         
-        self.RefreshConfNodeParamsSizer()
-        
     def __init__(self, parent, controler, window):
         configuration = controler.GetProjectMainConfigurationName()
         if configuration is not None:
@@ -52,5 +51,9 @@
         if self.Controler.CTNTestModified():
             return "~%s~" % fullname
         return fullname
+    
+    def RefreshView(self):
+        EditorPanel.RefreshView(self)
+        self.RefreshConfNodeParamsSizer()
 
         
\ No newline at end of file