diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2010-05-22 20:27:33 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2010-05-22 20:27:33 +0200 |
commit | 24ba9cba2c307a092c95f68c2531cd3e0ead7b6a (patch) | |
tree | 6e19e3fc29b942e661b10c11c8a74fe37c729084 | |
parent | bf961022b5e191e897e68f69784425d2c8166968 (diff) | |
download | portato-24ba9cba2c307a092c95f68c2531cd3e0ead7b6a.tar.gz portato-24ba9cba2c307a092c95f68c2531cd3e0ead7b6a.tar.bz2 portato-24ba9cba2c307a092c95f68c2531cd3e0ead7b6a.zip |
Fix the link buttons
Diffstat (limited to '')
-rw-r--r-- | portato/gui/windows/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/gui/windows/main.py b/portato/gui/windows/main.py index de62f45..7cf20e1 100644 --- a/portato/gui/windows/main.py +++ b/portato/gui/windows/main.py @@ -175,7 +175,7 @@ class PackageTable: ftexts.append(t) for t in ftexts: - link = gtk.LinkButton(t) + link = gtk.LinkButton(uri = t, label = t) link.set_alignment(0.0, 0.5) link.set_border_width(0) self.linkBox.add(link) |