/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to revisionview.py

  • Committer: Jelmer Vernooij
  • Date: 2010-02-28 15:19:15 UTC
  • mfrom: (674.1.1 bzr-gtk)
  • Revision ID: jelmer@samba.org-20100228151915-bvwflj8ongj2fwqd
Merge qense's indicator application work, but don't require appindicator to be installed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
            webbrowser._tryorder.insert(0, '%s "%%s"' % cmd)
52
52
    webbrowser.open(uri)
53
53
 
54
 
if getattr(gtk, 'link_button_set_uri_hook', None) is not None:
55
 
    # Not available before PyGtk-2.10
56
 
    gtk.link_button_set_uri_hook(_open_link)
 
54
gtk.link_button_set_uri_hook(_open_link)
57
55
 
58
56
class BugsTab(gtk.VBox):
59
57
 
60
58
    def __init__(self):
61
59
        super(BugsTab, self).__init__(False, 6)
62
 
 
 
60
    
63
61
        table = gtk.Table(rows=2, columns=2)
64
62
 
65
63
        table.set_row_spacings(6)