From 3e4e966c794e9807a4637443f8f4f57ea58fe698 Mon Sep 17 00:00:00 2001 From: Erik De Richter Date: Tue, 15 Apr 2008 17:59:50 +0000 Subject: [PATCH] Bug ID 0001767 Link Clipboard help button to wiki manual svn: r10564 --- src/ScratchPad.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/ScratchPad.py b/src/ScratchPad.py index 48c41f113..7655294f7 100644 --- a/src/ScratchPad.py +++ b/src/ScratchPad.py @@ -60,6 +60,13 @@ from TransUtils import sgettext as _ from DdTargets import DdTargets +#------------------------------------------------------------------------- +# +# Constants +# +#------------------------------------------------------------------------- +WIKI_HELP_PAGE = 'Gramps_3.0_Wiki_Manual_-_Navigation' +WIKI_HELP_SEC = _('manual|Using_the_Clipboard') #------------------------------------------------------------------------- # @@ -1245,7 +1252,7 @@ class ScratchPadWindow(ManagedWindow.ManagedWindow): def on_help_clicked(self, obj): """Display the relevant portion of GRAMPS manual""" - GrampsDisplay.help() + GrampsDisplay.help(webpage=WIKI_HELP_PAGE, section=WIKI_HELP_SEC) def on_clear_clicked(self, obj): """Deletes the selected object from the object list"""