From 2c0c3f0f8511254de0abf58ff38a4d31e5e490ff Mon Sep 17 00:00:00 2001 From: Doug Blank Date: Fri, 12 Feb 2010 12:48:27 +0000 Subject: [PATCH] Override config, if necessary svn: r14335 --- src/gui/widgets/grampletpane.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/gui/widgets/grampletpane.py b/src/gui/widgets/grampletpane.py index cb12500e6..51d6ae765 100644 --- a/src/gui/widgets/grampletpane.py +++ b/src/gui/widgets/grampletpane.py @@ -1272,7 +1272,8 @@ class GrampletPane(gtk.ScrolledWindow): _('Number of Columns'), 0, 'Gramplet View Options.column_count', - self._config.set) + self._config.set, + config=self._config) return _('Gramplet Layout'), table def build_panel(self, gramplet): @@ -1288,7 +1289,8 @@ class GrampletPane(gtk.ScrolledWindow): _('Title'), 0, "%s.title" % gramplet.title, - self._config.set) + self._config.set, + config=self._config) options = gramplet.make_gui_options() if options: table.attach(options, 1, 2, 4, 5, yoptions=0)