show URL in linkbutton. Fixes #2439

This commit is contained in:
Yann Leboulanger 2006-09-22 15:03:54 +00:00
parent b02eeac875
commit 2ebd0af9de
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ class VcardWindow:
try:
if value and entry_name == 'URL_label':
if gtk.pygtk_version >= (2, 10, 0) and gtk.gtk_version >= (2, 10, 0):
url_label = gtk.LinkButton(value)
url_label = gtk.LinkButton(value, value)
else:
url_label = gtk.Label(value)
table = self.xml.get_widget('personal_info_table')