summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMonsta <[email protected]>2015-07-08 14:02:37 +0300
committerMonsta <[email protected]>2015-07-08 14:02:37 +0300
commit95964f827056969f20524b38df81ac0f3793aed5 (patch)
treef19ceabc310dba2a1ba53a02cffe719628eac059
parentd720321beb563f2e029a04d238bc145a64eb666c (diff)
downloadengrampa-95964f827056969f20524b38df81ac0f3793aed5.tar.bz2
engrampa-95964f827056969f20524b38df81ac0f3793aed5.tar.xz
display correct help pages for all dialogs
-rw-r--r--src/actions.c2
-rw-r--r--src/gtk-utils.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/actions.c b/src/actions.c
index 5754aea..9e85e48 100644
--- a/src/actions.c
+++ b/src/actions.c
@@ -435,7 +435,7 @@ save_file_response_cb (GtkWidget *w,
}
if (response == GTK_RESPONSE_HELP) {
- show_help_dialog (GTK_WINDOW (data->dialog), "engrampa-convert-archive");
+ show_help_dialog (GTK_WINDOW (data->dialog), "engrampa-create#engrampa-convert-archive");
return;
}
diff --git a/src/gtk-utils.c b/src/gtk-utils.c
index 24a686a..8d29c07 100644
--- a/src/gtk-utils.c
+++ b/src/gtk-utils.c
@@ -772,7 +772,7 @@ show_help_dialog (GtkWindow *parent,
char *uri;
GError *error = NULL;
- uri = g_strconcat ("help:engrampa", section ? "?" : NULL, section, NULL);
+ uri = g_strconcat ("help:engrampa", section ? "/" : NULL, section, NULL);
if (! show_uri (gtk_window_get_screen (parent), uri, GDK_CURRENT_TIME, &error)) {
GtkWidget *dialog;