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

  • Committer: Curtis Hovey
  • Date: 2011-08-27 14:55:58 UTC
  • mto: This revision was merged to the branch mainline in revision 741.
  • Revision ID: sinzui.is@verizon.net-20110827145558-wo9ui5bd01q04lfk
GtkTreeView.set_cursor(tree_path, None, False) is the default args.

Show diffs side-by-side

added added

removed removed

Lines of Context:
228
228
        # This sets the cursor, which causes the expander to close, which
229
229
        # causes the _file_message_text_view to never get realized. So we have
230
230
        # to give it a little kick, or it warns when we try to grab the focus
231
 
        self._treeview_files.set_cursor(initial_cursor, None, None)
 
231
        self._treeview_files.set_cursor(initial_cursor, None, False)
232
232
 
233
233
        def _realize_file_message_tree_view(*args):
234
234
            self._file_message_text_view.realize()