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