/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: Jelmer Vernooij
  • Date: 2007-10-31 02:18:28 UTC
  • Revision ID: jelmer@samba.org-20071031021828-8xid6b5xmv1p8d53
Make broken_line_length setting from higher up.

Show diffs side-by-side

added added

removed removed

Lines of Context:
100
100
 
101
101
    def construct_top(self):
102
102
        """Construct the top-half of the window."""
103
 
        self.treeview = TreeView(self.branch, self.start, self.maxnum)
 
103
        # FIXME: Make broken_line_length configurable
 
104
        self.treeview = TreeView(self.branch, self.start, self.maxnum, 32)
104
105
 
105
106
        self.treeview.connect("revision-selected",
106
107
                self._treeselection_changed_cb)