From 0ac34fb885c726e9990b4a9d06aab2c512c5f156 Mon Sep 17 00:00:00 2001 From: Nick Hall Date: Tue, 10 Feb 2015 23:02:26 +0000 Subject: [PATCH] Fix bug in export assistant after conversion to use Grid widget --- gramps/gui/plug/export/_exportassistant.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gramps/gui/plug/export/_exportassistant.py b/gramps/gui/plug/export/_exportassistant.py index 1ba085051..0db66e8ed 100644 --- a/gramps/gui/plug/export/_exportassistant.py +++ b/gramps/gui/plug/export/_exportassistant.py @@ -193,8 +193,8 @@ class ExportAssistant(Gtk.Assistant, ManagedWindow) : box.set_spacing(12) grid = Gtk.Grid() - grid.set_row_spacings(6) - grid.set_col_spacings(6) + grid.set_row_spacing(6) + grid.set_column_spacing(6) button = None recent_type = config.get('behavior.recent-export-type')