[Vala] about dialog: website not clickable



Hi all,

I have some fairly routine vala code to show an About dialog, including a website link. The website is supposed to be clickable, but when the program runs the link is not actually clickable. Am I missing something? How do I get a clickable website link?


private void showAboutDialog () {
string license_trans = license[0] + "\n" + license[1] + "\n" + license[2];

        show_about_dialog (window,
                "version", Config.VERSION,
"copyright", "Copyright © 2009\nMichael J. Chudobiak\n<mjc svn gnome org>", "comments", _("A serial terminal for the GNOME desktop, optimized for logging and file capture."),
                "authors", authors,
                "translator-credits", translators,
                "logo-icon-name", "moserial",
                "wrap-license", true,
                "license", license_trans,
                "website", "http://sf.net/projects/moserial";,
                null);
}



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]