diff options
author | Monsta <[email protected]> | 2015-07-08 12:42:59 +0300 |
---|---|---|
committer | Monsta <[email protected]> | 2015-07-08 12:42:59 +0300 |
commit | bdb0ef751ef17270606bee63da5c6d080d1dd891 (patch) | |
tree | f0c1e17a818007f32c25f7d071d98cbcfa8b4cab | |
parent | a5c13501b64d281b7acb2861269810f1ce66c42e (diff) | |
download | pluma-bdb0ef751ef17270606bee63da5c6d080d1dd891.tar.bz2 pluma-bdb0ef751ef17270606bee63da5c6d080d1dd891.tar.xz |
show correct help pages for prefs and plugins dialogs
-rwxr-xr-x | plugins/time/pluma-time-plugin.c | 4 | ||||
-rw-r--r-- | pluma/pluma-help.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/plugins/time/pluma-time-plugin.c b/plugins/time/pluma-time-plugin.c index bc2ea732..d3f251ae 100755 --- a/plugins/time/pluma-time-plugin.c +++ b/plugins/time/pluma-time-plugin.c @@ -1166,9 +1166,9 @@ configure_dialog_response_cb (GtkWidget *widget, { pluma_debug_message (DEBUG_PLUGINS, "GTK_RESPONSE_HELP"); - pluma_help_display (GTK_WINDOW (dialog), + pluma_help_display (GTK_WINDOW (widget), NULL, - "pluma-date-time-configure"); + "pluma-insert-date-time-plugin#pluma-date-time-configure"); break; } case GTK_RESPONSE_OK: diff --git a/pluma/pluma-help.c b/pluma/pluma-help.c index 04650412..336d5793 100644 --- a/pluma/pluma-help.c +++ b/pluma/pluma-help.c @@ -75,7 +75,7 @@ pluma_help_display (GtkWindow *parent, #ifndef G_OS_WIN32 if (link_id) - link = g_strdup_printf ("help:%s?%s", name, link_id); + link = g_strdup_printf ("help:%s/%s", name, link_id); else link = g_strdup_printf ("help:%s", name); #else |