diff --git a/src/gui/editors/editeventref.py b/src/gui/editors/editeventref.py index 9fce2993d..74b33b30a 100644 --- a/src/gui/editors/editeventref.py +++ b/src/gui/editors/editeventref.py @@ -101,7 +101,7 @@ class EditEventRef(EditReference): def _connect_signals(self): self.define_ok_button(self.top.get_object('ok'),self.ok_clicked) self.define_cancel_button(self.top.get_object('cancel')) - self.define_help_button(self.top.get_object('help'),self.on_help_button_clicked) + self.define_help_button(self.top.get_object('help'), WIKI_HELP_PAGE, WIKI_HELP_SEC) def _connect_db_signals(self): """ @@ -259,10 +259,6 @@ class EditEventRef(EditReference): self.close() - def on_help_button_clicked(self, obj): - """Display the relevant portion of GRAMPS manual""" - GrampsDisplay.help(webpage=WIKI_HELP_PAGE, section=WIKI_HELP_SEC) - class EditFamilyEventRef(EditEventRef): def __init__(self, state, uistate, track, event, event_ref, update):