# HG changeset patch # User Laurent Bessard # Date 1375868834 -7200 # Node ID adda406d3960fd2c7c30dd153d8b9e7c29755b70 # Parent fa77f3b8f18274028cc187ee25ad902761742d8a Fixed bug when displaying Master generated Object Dictionary in canfestival extension diff -r fa77f3b8f182 -r adda406d3960 canfestival/SlaveEditor.py --- a/canfestival/SlaveEditor.py Tue Aug 06 01:29:14 2013 +0200 +++ b/canfestival/SlaveEditor.py Wed Aug 07 11:47:14 2013 +0200 @@ -75,8 +75,9 @@ self.ParentWindow.RefreshPageTitles() class MasterViewer(SlaveEditor): + SHOW_BASE_PARAMS = False SHOW_PARAMS = False - + def __init__(self, parent, controler, window, tagname): SlaveEditor.__init__(self, parent, controler, window, False) @@ -96,3 +97,7 @@ def IsViewing(self, tagname): return self.GetInstancePath() == tagname + + def RefreshView(self): + self.SlaveNodeEditor.RefreshIndexList() +