--- tear-0.3.1.orig/src/about.vala 2009-04-24 23:05:18.000000000 +0100
+++ tear-0.3.1/src/about.vala 2009-07-25 08:48:19.000000000 +0100
@@ -2,6 +2,12 @@
public class Tear.About: Gtk.AboutDialog {
+ public void open_link (Gtk.AboutDialog about, string link_)
+ {
+ about.hide();
+ get_topmost_window ().web_view.open(link_);
+ }
+
construct {
this.version = Config.VERSION_MAJOR_MINOR;
@@ -22,8 +28,9 @@
You should have received a copy of the GNU General Public License
along with Tear. If not, see .""");
this.wrap_license = true;
+ this.set_url_hook (open_link);
this.website = "http://www.bundyo.org/tear";
-
+
string[] authors = {Config.MAINTAINER, null};
authors += "Ignacius ";
this.set_authors(authors);