/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: Gary van der Merwe
  • Date: 2007-08-31 11:24:56 UTC
  • mto: (256.2.37 gtk)
  • mto: This revision was merged to the branch mainline in revision 289.
  • Revision ID: garyvdm@gmail.com-20070831112456-x0if1u8gsbm04tbf
Show Children

Show diffs side-by-side

added added

removed removed

Lines of Context:
148
148
    def construct_bottom(self):
149
149
        """Construct the bottom half of the window."""
150
150
        from bzrlib.plugins.gtk.logview import LogView
151
 
        self.logview = LogView()
 
151
        self.logview = LogView(None, True, [], True)
152
152
        (width, height) = self.get_size()
153
153
        self.logview.set_size_request(width, int(height / 2.5))
154
154
        self.logview.show()
216
216
            tagdict = self.branch.tags.get_reverse_tag_dict()
217
217
            if tagdict.has_key(revision.revision_id):
218
218
                tags = tagdict[revision.revision_id]
219
 
        self.logview.set_revision(revision, tags)
 
219
        self.logview.set_revision(revision, tags, children)
220
220
 
221
221
    def _back_clicked_cb(self, *args):
222
222
        """Callback for when the back button is clicked."""