/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 viz/branchwin.py

  • Committer: Curtis Hovey
  • Date: 2011-09-03 02:37:26 UTC
  • mto: This revision was merged to the branch mainline in revision 741.
  • Revision ID: sinzui.is@verizon.net-20110903023726-ai3yr93z67q9wjd1
Fixed menu item.

Show diffs side-by-side

added added

removed removed

Lines of Context:
454
454
                    except KeyError:
455
455
                        str = ""
456
456
 
457
 
                    item = Gtk.MenuItem(child.message.split("\n")[0] + str)
 
457
                    item = Gtk.MenuItem(
 
458
                        label=child.message.split("\n")[0] + str)
458
459
                    item.connect('activate', self._set_revision_cb, child_id)
459
460
                    next_menu.add(item)
460
461
                next_menu.show_all()