* src/plugins/FamilyGroup.py (add_user_options): Do not use _("")
to create empty checkbox. svn: r5945
This commit is contained in:
parent
a7b12c2ec0
commit
bc75ced306
@ -1,3 +1,7 @@
|
||||
2006-02-16 Alex Roitman <shura@gramps-project.org>
|
||||
* src/plugins/FamilyGroup.py (add_user_options): Do not use _("")
|
||||
to create empty checkbox.
|
||||
|
||||
2006-02-16 Don Allingham <don@gramps-project.org>
|
||||
* src/ReadGedcom.py: remove debugging statements
|
||||
|
||||
|
@ -629,7 +629,7 @@ class FamilyGroupOptions(ReportOptions.ReportOptions):
|
||||
self.spouse_menu.set_active(spouse_index)
|
||||
|
||||
# Recursive
|
||||
self.recursive_option = gtk.CheckButton(_(""))
|
||||
self.recursive_option = gtk.CheckButton()
|
||||
self.recursive_option.set_active(self.options_dict['recursive'])
|
||||
|
||||
# Missing Info
|
||||
|
Loading…
Reference in New Issue
Block a user