/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-13 00:28:44 UTC
  • mto: This revision was merged to the branch mainline in revision 741.
  • Revision ID: sinzui.is@verizon.net-20110813002844-rcb9kpcv2qfgus0b
Fixed search in diff.

Show diffs side-by-side

added added

removed removed

Lines of Context:
596
596
            # We have either made it to the end of the list, or nothing was
597
597
            # selected. Either way, select All Files, and jump to the global
598
598
            # commit message.
599
 
            self._treeview_files.set_cursor((0,))
 
599
            self._treeview_files.set_cursor((0,), None, False)
600
600
            self._global_message_text_view.grab_focus()
601
601
        else:
602
602
            # Set the cursor to this entry, and jump to the per-file commit
603
603
            # message
604
 
            self._treeview_files.set_cursor(model.get_path(next))
 
604
            self._treeview_files.set_cursor(model.get_path(next), None, False)
605
605
            self._file_message_text_view.grab_focus()
606
606
 
607
607
    def _save_current_file_message(self):