/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 annotate/gannotate.py

  • Committer: Curtis Hovey
  • Date: 2012-02-09 01:56:37 UTC
  • mto: This revision was merged to the branch mainline in revision 776.
  • Revision ID: sinzui.is@verizon.net-20120209015637-e3nhriv8ffz3h652
gtk.VPaned was replaced with Gtk.Paned

Show diffs side-by-side

added added

removed removed

Lines of Context:
220
220
        hbox.show()
221
221
        vbox.pack_start(hbox, False, True, 0)
222
222
 
223
 
        self.pane = pane = Gtk.VPaned()
 
223
        self.pane = pane = Gtk.Paned.new(Gtk.Orientation.VERTICAL)
224
224
        pane.add1(swbox)
225
225
        pane.add2(self.revisionview)
226
226
        pane.show()