From f1aa64960195b80bf398ebe6e7fa9b248ee866e9 Mon Sep 17 00:00:00 2001 From: Doug Blank Date: Tue, 8 Oct 2013 01:12:28 +0000 Subject: [PATCH] Add Gallery 'Make Active Media', typo svn: r23271 --- gramps/gui/editors/displaytabs/gallerytab.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gramps/gui/editors/displaytabs/gallerytab.py b/gramps/gui/editors/displaytabs/gallerytab.py index d447b4619..318a7290f 100644 --- a/gramps/gui/editors/displaytabs/gallerytab.py +++ b/gramps/gui/editors/displaytabs/gallerytab.py @@ -162,11 +162,11 @@ class GalleryTab(ButtonTab, DbGUIElement): item.show() self.menu.append(item) - item = gtk.MenuItem(_('Make Active Media')) + item = Gtk.MenuItem(_('Make Active Media')) item.connect('activate', lambda obj: self.uistate.set_active(ref_obj.handle, "Media")) item.show() menu.append(item) - item = gtk.SeparatorMenuItem() + item = Gtk.SeparatorMenuItem() item.show() menu.append(item)