Author: joanied Date: Fri Feb 8 19:29:20 2008 New Revision: 3548 URL: http://svn.gnome.org/viewvc/orca?rev=3548&view=rev
Log: * src/orca/Gecko.py: Fix for bug #514427 - Orca skips over headings at the end of sections in FF3. Modified: trunk/ChangeLog trunk/src/orca/Gecko.py Modified: trunk/src/orca/Gecko.py ============================================================================== --- trunk/src/orca/Gecko.py (original) +++ trunk/src/orca/Gecko.py Fri Feb 8 19:29:20 2008 @@ -8496,8 +8496,9 @@ if index < 0: currentLine = self.getLineContentsAtOffset(obj, characterOffset) - [nextObj, nextOffset] = self.findNextCaretInOrder(currentLine[-1][0], - currentLine[-1][2]) + [nextObj, nextOffset] = \ + self.findNextCaretInOrder(currentLine[-1][0], + currentLine[-1][2] - 1) # We need to be sure that we've actually found a new line rather than # a space at the end of the current line. _______________________________________________ SVN-commits-list mailing list (read only) http://mail.gnome.org/mailman/listinfo/svn-commits-list Want to limit the commits to a few modules? Go to above URL, log in to edit your options and select the modules ('topics') you want. Module maintainer? It is possible to set the reply-to to your development mailing list. Email [EMAIL PROTECTED] if interested.