diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index 965909529..7b5970748 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,3 +1,6 @@ +2003-07-12 Alex Roitman + * src/Plugins.py (PluginDialog.build_tree): Remove reverse() call. + 2003-07-11 Alex Roitman * src/plugins/IndivSummary.py (IndivSummary.__init__): Provide default value of 0 to newpage argument. diff --git a/gramps2/src/Plugins.py b/gramps2/src/Plugins.py index 679d4d848..fa204453f 100644 --- a/gramps2/src/Plugins.py +++ b/gramps2/src/Plugins.py @@ -239,7 +239,6 @@ class PluginDialog: self.store.set(node,0,key) next = None data.sort() - data.reverse() for item in data: next = self.store.insert_after(node,next) ilist.append((next,item))