395
395
self.graph_column.set_resizable(True)
396
396
self.graph_column.set_sizing(Gtk.TreeViewColumnSizing.FIXED)
397
397
self.graph_column.pack_start(self.graph_cell, True)
398
self.graph_column.add_attribute(self.graph_cell, "node", treemodel.NODE)
399
self.graph_column.add_attribute(self.graph_cell, "tags", treemodel.TAGS)
400
self.graph_column.add_attribute(self.graph_cell, "in-lines", treemodel.LAST_LINES)
401
self.graph_column.add_attribute(self.graph_cell, "out-lines", treemodel.LINES)
398
self.graph_column.add_attribute(
399
self.graph_cell, "node", treemodel.NODE)
400
self.graph_column.add_attribute(
401
self.graph_cell, "tags", treemodel.TAGS)
402
self.graph_column.add_attribute(
403
self.graph_cell, "in-lines", treemodel.LAST_LINES)
404
self.graph_column.add_attribute(
405
self.graph_cell, "out-lines", treemodel.LINES)
402
406
self.treeview.append_column(self.graph_column)
404
408
cell = Gtk.CellRendererText()