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))