/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: Daniel Schierbeck
  • Date: 2008-04-01 22:10:40 UTC
  • mto: (461.1.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 462.
  • Revision ID: daniel.schierbeck@gmail.com-20080401221040-fyso3yxh0g2ajagu
Further improved the look of the bug tab.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
        table = gtk.Table(rows=2, columns=2)
39
39
 
40
40
        table.set_row_spacings(6)
 
41
        table.set_col_spacings(12)
41
42
 
42
43
        image = gtk.Image()
43
44
        image.set_from_file(icon_path("bug.png"))
44
45
        table.attach(image, 0, 1, 0, 1, gtk.FILL)
45
46
 
46
 
        align = gtk.Alignment(0.0, 0.5)
 
47
        align = gtk.Alignment(0.0, 0.1)
47
48
        label = gtk.Label()
48
49
        label.set_markup("<b>Bugs</b>\nThis revision has one or more bug associations.")
49
50
        align.add(label)