/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/treeview.py

  • Committer: Daniel Schierbeck
  • Date: 2008-01-20 19:53:30 UTC
  • mto: (423.1.5 trunk)
  • mto: This revision was merged to the branch mainline in revision 429.
  • Revision ID: daniel.schierbeck@gmail.com-20080120195330-ivn7xla3b3r5nnh1
Made the MESSAGE column be the tooltip column.

Show diffs side-by-side

added added

removed removed

Lines of Context:
284
284
        # Fix old PyGTK bug - by JAM
285
285
        set_tooltip = getattr(self.treeview, 'set_tooltip_column', None)
286
286
        if set_tooltip is not None:
287
 
            set_tooltip(treemodel.SUMMARY)
 
287
            set_tooltip(treemodel.MESSAGE)
288
288
 
289
289
        self.treeview.connect("cursor-changed",
290
290
                self._on_selection_changed)