Skip to content

Commit

Permalink
Fix context menu in all family events quick view screen
Browse files Browse the repository at this point in the history
Fixes #12759.
  • Loading branch information
Utheri Wagura authored and Nick-Hall committed Feb 7, 2024
1 parent 0c3419d commit 82550c6
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 82550c6

Please sign in to comment.