diff options
Diffstat (limited to 'src/caja-location-dialog.c')
-rw-r--r-- | src/caja-location-dialog.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/caja-location-dialog.c b/src/caja-location-dialog.c index 486f7339..43503b1b 100644 --- a/src/caja-location-dialog.c +++ b/src/caja-location-dialog.c @@ -94,9 +94,15 @@ response_callback (CajaLocationDialog *dialog, break; case GTK_RESPONSE_HELP : error = NULL; +#if GTK_CHECK_VERSION (3, 22, 0) + gtk_show_uri_on_window (GTK_WINDOW (dialog), + "help:mate-user-guide/caja-open-location", + gtk_get_current_event_time (), &error); +#else gtk_show_uri (gtk_window_get_screen (GTK_WINDOW (dialog)), "help:mate-user-guide/caja-open-location", gtk_get_current_event_time (), &error); +#endif if (error) { eel_show_error_dialog (_("There was an error displaying help."), error->message, |