diff options
Diffstat (limited to 'applets/clock')
-rw-r--r-- | applets/clock/clock-utils.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/applets/clock/clock-utils.c b/applets/clock/clock-utils.c index 14cf06df..83b08fc6 100644 --- a/applets/clock/clock-utils.c +++ b/applets/clock/clock-utils.c @@ -72,10 +72,13 @@ clock_utils_display_help (GtkWidget *widget, uri = g_strdup_printf ("help:%s/%s", doc_id, link_id); else uri = g_strdup_printf ("help:%s", doc_id); - +#if GTK_CHECK_VERSION (3, 22, 0) + gtk_show_uri_on_window (NULL, uri, + gtk_get_current_event_time (), &error); +#else gtk_show_uri (gtk_widget_get_screen (widget), uri, - gtk_get_current_event_time (), &error); - + gtk_get_current_event_time (), &error); +#endif g_free (uri); if (error && |