[Nvda-dev] commit r3049 - in trunk: source/virtualBuffers user_docs/en

NVDA Subversion svn at nvda-project.org
Thu Jul 9 23:12:06 UTC 2009


Author: nvda
Date: Thu Jul  9 23:12:05 2009
New Revision: 3049

Log:
virtual buffers: Remap landmark quick nav key to d instead of semicolon to allow use on some non-English keyboards.

Modified:
   trunk/source/virtualBuffers/__init__.py
   trunk/user_docs/en/whats new.txt

Modified: trunk/source/virtualBuffers/__init__.py
==============================================================================
--- trunk/source/virtualBuffers/__init__.py	(original)
+++ trunk/source/virtualBuffers/__init__.py	Thu Jul  9 23:12:05 2009
@@ -932,6 +932,6 @@
 	prevDoc=_("moves to the previous block quote"), prevError=_("no previous block quote"))
 qn("notLinkBlock", key="n", nextDoc=_("skips forward past a block of links"), nextError=_("no more text after a block of links"),
 	prevDoc=_("skips backward past a block of links"), prevError=_("no more text before a block of links"), readUnit=textInfos.UNIT_LINE)
-qn("landmark", key=";", nextDoc=_("moves to the next landmark"), nextError=_("no next landmark"),
+qn("landmark", key="d", nextDoc=_("moves to the next landmark"), nextError=_("no next landmark"),
 	prevDoc=_("moves to the previous landmark"), prevError=_("no previous landmark"), readUnit=textInfos.UNIT_LINE)
 del qn

Modified: trunk/user_docs/en/whats new.txt
==============================================================================
--- trunk/user_docs/en/whats new.txt	(original)
+++ trunk/user_docs/en/whats new.txt	Thu Jul  9 23:12:05 2009
@@ -34,7 +34,7 @@
 * fix: NVDA now correctly handles ARIA labels in Mozilla Gecko when there is no other useful content. (#156)
 * fix: NVDA no longer incorrectly enables focus mode automatically for editable text fields which update their value when the focus changes; e.g. http://tigerdirect.com/. (#220)
 * new: When browsing web documents, you can now press n and shift+n to skip forward and backward past blocks of links, respectively.
-* new: When browsing web documents, ARIA landmarks are now reported, and you can move forward and backward through them using semicolon and shift+semicolon, respectively. (#192)
+* new: When browsing web documents, ARIA landmarks are now reported, and you can move forward and backward through them using d and shift+d, respectively. (#192)
 
 Changes since 0.6 P2:
 * new: As Microsoft Excel's formula bar is inaccessible to NVDA, provide an NVDA specific dialog box for editing when the user presses f2 on a cell. 



More information about the Nvda-dev mailing list