301
291
def construct_bottom(self):
302
292
"""Construct the bottom half of the window."""
303
293
from bzrlib.plugins.gtk.revisionview import RevisionView
304
self.revisionview = RevisionView(None, tags=[], show_children=True, branch=self.branch)
305
295
(width, height) = self.get_size()
306
296
self.revisionview.set_size_request(width, int(height / 2.5))
308
298
self.revisionview.set_show_callback(self._show_clicked_cb)
312
302
def _tag_selected_cb(self, menuitem, revid):