The navigator now displays the plots and data in a tree that shows the ancestry information.

This commit is contained in:
2006-04-24 14:52:21 +00:00
parent 6c72dec7fa
commit 179a2f88a9
6 changed files with 80 additions and 44 deletions

View File

@@ -58,7 +58,10 @@ class LogView(gtk.TreeView):
#self.connect('button_release_event', None)
# Make sure tree view displays bottom entry when entered
self.model.connect('row-changed', lambda model, path, iter : self.scroll_to_cell(path))
def scroll_to_last(model, path, it):
if path:
self.scroll_to_cell(path)
self.model.connect('row-changed', scroll_to_last)
def set_level(self, level):
self.level = level