summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Klapper <a9016009@gmx.de>2021-08-09 21:20:42 +0200
committerAndre Klapper <a9016009@gmx.de>2021-08-09 21:20:42 +0200
commitf49a93f9f02228c379d3eb7f12f6f107eb13c2db (patch)
treeb5e7176978ae2cd470cadba1913c09a18feb9ae5
parent180fcd95c4b114ae4bcb4d90414ff02456c23df7 (diff)
downloadgnome-dictionary-f49a93f9f02228c379d3eb7f12f6f107eb13c2db.tar.gz
Fix wrong target name for Help button in Sources dialog
-rw-r--r--src/gdict-source-dialog.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gdict-source-dialog.c b/src/gdict-source-dialog.c
index df99999..3b92f2f 100644
--- a/src/gdict-source-dialog.c
+++ b/src/gdict-source-dialog.c
@@ -449,11 +449,11 @@ on_dialog_response (GtkDialog *dialog,
case GTK_RESPONSE_HELP:
#if GTK_CHECK_VERSION (3, 22, 0)
gtk_show_uri_on_window (GTK_WINDOW (dialog),
- "help:gnome-dictionary/gnome-dictionary-add-source",
+ "help:gnome-dictionary/sources",
gtk_get_current_event_time (), &err);
#else
gtk_show_uri (gtk_widget_get_screen (GTK_WIDGET (dialog)),
- "help:gnome-dictionary/gnome-dictionary-add-source",
+ "help:gnome-dictionary/sources",
gtk_get_current_event_time (), &err);
#endif