/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: Daniel Schierbeck
  • Date: 2007-10-30 15:46:43 UTC
  • mto: (326.1.1 dev)
  • mto: This revision was merged to the branch mainline in revision 327.
  • Revision ID: daniel.schierbeck@gmail.com-20071030154643-b2s7zov2tob96fvw
Added 'Changes' page to logview.

Show diffs side-by-side

added added

removed removed

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