/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

  • Committer: Curtis Hovey
  • Date: 2011-09-03 03:48:19 UTC
  • mto: This revision was merged to the branch mainline in revision 741.
  • Revision ID: sinzui.is@verizon.net-20110903034819-fykalb2wvljakeu5
Save point trying to make a graph visible.

Show diffs side-by-side

added added

removed removed

Lines of Context:
312
312
            show_graph = self.graph_column.get_visible()
313
313
 
314
314
            self.branch.lock_read()
315
 
            (linegraphdata, index, columns_len) = linegraph(self.branch.repository.get_graph(),
316
 
                                                            self.start,
317
 
                                                            self.maxnum, 
318
 
                                                            broken_line_length,
319
 
                                                            show_graph,
320
 
                                                            self.mainline_only,
321
 
                                                            self.progress_bar)
 
315
            (linegraphdata, index, columns_len) = linegraph(
 
316
                self.branch.repository.get_graph(),
 
317
                self.start,
 
318
                self.maxnum, 
 
319
                broken_line_length,
 
320
                show_graph,
 
321
                self.mainline_only,
 
322
                self.progress_bar)
322
323
 
323
324
            self.model.set_line_graph_data(linegraphdata)
324
325
            self.graph_cell.columns_len = columns_len
361
362
        self.treeview.set_enable_search(True)
362
363
 
363
364
        self.treeview.set_tooltip_column(treemodel.MESSAGE)
 
365
        self.treeview.set_headers_visible(True)
364
366
 
365
367
        self._prev_cursor_path = None
366
368
        self.treeview.connect("cursor-changed",