/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: Jelmer Vernooij
  • Date: 2007-10-30 23:42:27 UTC
  • mfrom: (324.2.11 no-diff)
  • Revision ID: jelmer@samba.org-20071030234227-cm6b5m8itw4bsntu
Merge tab view for viz.

Show diffs side-by-side

added added

removed removed

Lines of Context:
140
140
    def construct_bottom(self):
141
141
        """Construct the bottom half of the window."""
142
142
        from bzrlib.plugins.gtk.logview import LogView
143
 
        self.logview = LogView(None, True, [], True)
 
143
        self.logview = LogView(None, True, [], True, branch=self.branch)
144
144
        (width, height) = self.get_size()
145
145
        self.logview.set_size_request(width, int(height / 2.5))
146
146
        self.logview.show()