* src/plugins/DetDescendantReport.py: Add style descriptions
for the paragraphs. Add first entry style. Change defaults to be similar to the FTM style reports. * src/plugins/DetAncestralReport.py: Add style descriptions for the paragraphs. Add first entry style. Change defaults to be similar to the FTM style reports. * src/StyleEditor.py (draw, save_paragraph): Allow users to adjust first line indent. * src/styles.glade: Add first line indent entry. * src/plugins/Check.py (delete_empty_family): Remove families in which person is a parent, not only a child. * src/gramps_main.py (post_load): Use display_frel and display_fattr. * src/MediaView.py (key_press): Add function. * src/PlaceView.py (key_press): Add function. * src/SourceView.py (key_press): Add function. * src/plugins/WebPage.py: Add tab with index page options. * src/po/hu.po: Update * doc/gramps-manual/hu/filtref.xml: Update svn: r2831
This commit is contained in:
@@ -1702,13 +1702,15 @@ class Gramps:
|
||||
|
||||
mylist = self.db.get_family_attribute_types()
|
||||
for type in mylist:
|
||||
if type not in const.familyAttributes:
|
||||
const.familyAttributes.append(type)
|
||||
ntype = const.display_fattr(type)
|
||||
if ntype not in const.familyAttributes:
|
||||
const.familyAttributes.append(ntype)
|
||||
|
||||
mylist = self.db.get_family_relation_types()
|
||||
for type in mylist:
|
||||
if type not in const.familyRelations:
|
||||
const.familyRelations.append(type)
|
||||
ntype = const.display_frel(type)
|
||||
if ntype not in const.familyRelations:
|
||||
const.familyRelations.append(ntype)
|
||||
except:
|
||||
pass
|
||||
|
||||
|
||||
Reference in New Issue
Block a user