/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to branchview/treeview.py

Merged Ali's fancy tags branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
233
233
                                                        self.maxnum, 
234
234
                                                        broken_line_length)
235
235
 
236
 
        self.model = TreeModel(self.branch.repository, linegraphdata)
 
236
        self.model = TreeModel(self.branch, linegraphdata)
237
237
        self.graph_cell.columns_len = columns_len
238
238
        width = self.graph_cell.get_size(self.treeview)[2]
239
239
        if width > 500:
317
317
        self.graph_column.set_sizing(gtk.TREE_VIEW_COLUMN_FIXED)
318
318
        self.graph_column.pack_start(self.graph_cell, expand=False)
319
319
        self.graph_column.add_attribute(self.graph_cell, "node", treemodel.NODE)
 
320
        self.graph_column.add_attribute(self.graph_cell, "tags", treemodel.TAGS)
320
321
        self.graph_column.add_attribute(self.graph_cell, "in-lines", treemodel.LAST_LINES)
321
322
        self.graph_column.add_attribute(self.graph_cell, "out-lines", treemodel.LINES)
322
323
        self.treeview.append_column(self.graph_column)