208
208
def construct_bottom(self):
209
209
"""Construct the bottom half of the window."""
211
self.logview = LogView(None, True, [], True, branch=self.branch)
211
self.revisionview = RevisionView(None, tags=[], show_children=True, branch=self.branch)
212
212
(width, height) = self.get_size()
219
219
def _tag_selected_cb(self, menuitem, revid):
220
220
self.treeview.set_revision(revid)
222
222
def _treeselection_changed_cb(self, selection, *args):
223
223
"""callback for when the treeview changes."""
224
224
revision = self.treeview.get_revision()