/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: Curtis Hovey
  • Date: 2011-08-12 19:58:53 UTC
  • mto: This revision was merged to the branch mainline in revision 741.
  • Revision ID: sinzui.is@verizon.net-20110812195853-hveqgdof62g5eoq7
pass all the required args to pack_start().

Show diffs side-by-side

added added

removed removed

Lines of Context:
547
547
                button.add(image)
548
548
                button.connect("clicked", self._show_clicked_cb,
549
549
                               self._revision.revision_id, revid)
550
 
                hbox.pack_start(button, expand=False, fill=True)
 
550
                hbox.pack_start(button, False, True, True, 0)
551
551
                button.show()
552
552
 
553
553
            button = Gtk.Button()
559
559
                    lambda w, r: self.set_revision(
560
560
                        self._repository.get_revision(r)), revid)
561
561
            button.set_use_underline(False)
562
 
            hbox.pack_start(button, expand=True, fill=True)
 
562
            hbox.pack_start(button, True, True, True, 0)
563
563
            button.show_all()
564
564
 
565
565
    def _create_general(self):