/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 viz/branchwin.py

  • Committer: Daniel Schierbeck
  • Date: 2007-10-08 10:23:50 UTC
  • Revision ID: daniel.schierbeck@gmail.com-20071008102350-p03j5amaatfnux5z
Resized the Message and Committer columns in the revision history view.

Show diffs side-by-side

added added

removed removed

Lines of Context:
128
128
        self.treeview.append_column(self.graph_column)
129
129
 
130
130
        cell = gtk.CellRendererText()
131
 
        cell.set_property("width-chars", 40)
 
131
        cell.set_property("width-chars", 65)
132
132
        cell.set_property("ellipsize", pango.ELLIPSIZE_END)
133
133
        column = gtk.TreeViewColumn("Message")
134
134
        column.set_resizable(True)
139
139
        self.treeview.append_column(column)
140
140
 
141
141
        cell = gtk.CellRendererText()
142
 
        cell.set_property("width-chars", 40)
 
142
        cell.set_property("width-chars", 15)
143
143
        cell.set_property("ellipsize", pango.ELLIPSIZE_END)
144
144
        column = gtk.TreeViewColumn("Committer")
145
145
        column.set_resizable(True)