* src/Selectors/_SelectPerson.py: Enable markup for bith date column to enable birth fallback in italics (closes #763)

svn: r7800
This commit is contained in:
Martin Hawlisch 2006-12-14 10:32:38 +00:00
parent 65c3d40a22
commit 488f618a04
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2006-12-14 Martin Hawlisch <Martin.Hawlisch@gmx.de>
* src/Selectors/_SelectPerson.py: Enable markup for bith date column
to enable birth fallback in italics (closes #763)
2006-12-13 Alex Roitman <shura@gramps-project.org>
* src/Filters/Rules/Family/_RegExpFatherName.py: Add new module.
* src/Filters/Rules/Family/_RegExpMotherName.py: Add new module.

View File

@ -113,7 +113,7 @@ class SelectPerson(ManagedWindow.ManagedWindow):
column.set_fixed_width(75)
tree.append_column(column)
column = gtk.TreeViewColumn(_('Birth date'), self.renderer, text=3)
column = gtk.TreeViewColumn(_('Birth date'), self.renderer, markup=3)
column.set_sizing(gtk.TREE_VIEW_COLUMN_FIXED)
column.set_fixed_width(160)
tree.append_column(column)