From cfa0851118422c1527c3faa9f174b6b43d4cfc7f Mon Sep 17 00:00:00 2001 From: Nick Hall Date: Thu, 3 Feb 2011 19:36:47 +0000 Subject: [PATCH] Fix tab labels for gramplet configuration svn: r16560 --- src/gui/grampsbar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/grampsbar.py b/src/gui/grampsbar.py index f4f682e9c..01041775c 100644 --- a/src/gui/grampsbar.py +++ b/src/gui/grampsbar.py @@ -442,7 +442,7 @@ class GrampsBar(gtk.Notebook): for gramplet in gramplets + self.detached_gramplets: gui_options = gramplet.make_gui_options() if gui_options: - funcs.append(self.__build_panel(gramplet, gui_options)) + funcs.append(self.__build_panel(gramplet.title, gui_options)) return funcs def __build_panel(self, title, gui_options):