2008-03-07 Douglas S. Blank <dblank@cs.brynmawr.edu>

* src/QuickReports.py: optionally pass in kwargs
	* src/plugins/DefaultGramplets.py: added generation summary to pedigree
	* src/plugins/FilterByName.py: new filter "people by list"
	* src/DataViews/GrampletView.py: handle "people by list" links



svn: r10211
This commit is contained in:
Doug Blank
2008-03-07 14:19:30 +00:00
parent 0a71655918
commit 52e250979b
5 changed files with 53 additions and 6 deletions

View File

@ -436,6 +436,14 @@ class Gramplet(object):
self.gui.uistate,
'filterbyname',
handle)
elif link_type == 'PersonList':
if event.button == 1: # left mouse
if event.type == gtk.gdk._2BUTTON_PRESS: # double
run_quick_report_by_name(self.gui.dbstate,
self.gui.uistate,
'filterbyname',
'list of people',
handles=handle)
return True
return False # did not handle event