[Vala] about dialog: website not clickable
- From: "Dr. Michael J. Chudobiak" <mjc avtechpulse com>
- To: vala-list gnome org
- Subject: [Vala] about dialog: website not clickable
- Date: Fri, 23 Jan 2009 07:59:39 -0500
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]