]> granicus.if.org Git - transmission/commitdiff
Make URL clickable in about dialog
authorMukund Sivaraman <muks@mukund.org>
Fri, 15 Aug 2008 17:45:18 +0000 (17:45 +0000)
committerMukund Sivaraman <muks@mukund.org>
Fri, 15 Aug 2008 17:45:18 +0000 (17:45 +0000)
gtk/main.c

index 9b2f1955147bd4d69d426f3337a72fd2732e26b1..2739dc5d532f74b403ec331fab738294e9e7f5d1 100644 (file)
@@ -1092,13 +1092,16 @@ about ( GtkWindow * parent )
         NULL
     };
 
+    const char *website_url = "http://www.transmissionbt.com/";
+
     gtk_about_dialog_set_url_hook( aboutDialogActivateLink, NULL, NULL );
 
     gtk_show_about_dialog( parent,
         "name", g_get_application_name(),
         "comments", _("A fast and easy BitTorrent client"),
         "version", LONG_VERSION_STRING,
-        "website", "http://www.transmissionbt.com/",
+        "website", website_url,
+        "website-label", website_url,
         "copyright",_("Copyright 2005-2008 The Transmission Project"),
         "logo-icon-name", "transmission",
 #ifdef SHOW_LICENSE