Skip to content

Commit

Permalink
Fixed context menu in all family events quick view screen
Browse files Browse the repository at this point in the history
  • Loading branch information
Utheri Wagura committed Oct 29, 2023
1 parent e1ac509 commit 5263b20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gramps/plugins/quickview/all_events.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def run_fam(database, document, family):
stab = QuickTable(sdb)

# get the family events
event_list = [(_("Family"), x) for x in sdb.events(family)]
event_list = [(family, x) for x in sdb.events(family)]

# get the events of father and mother
# fathername = sdb.first_name(sdb.father(family))
Expand Down

0 comments on commit 5263b20

Please sign in to comment.