[Nvda-dev] commit r3426 - trunk/source/appModules

NVDA Subversion svn at nvda-project.org
Tue Dec 8 07:05:05 UTC 2009


Author: bzr
Date: Tue Dec  8 07:05:05 2009
New Revision: 3426

Log:
Outlook appModule: again allow NVDA to announce focus changes in regards to treeviews (folder list etc) by  updating code to the new shouldAllowIAccessibleFocusEvent property.

Modified:
   trunk/source/appModules/outlook.py

Modified: trunk/source/appModules/outlook.py
==============================================================================
--- trunk/source/appModules/outlook.py	(original)
+++ trunk/source/appModules/outlook.py	Tue Dec  8 07:05:05 2009
@@ -63,7 +63,7 @@
 		if role in (controlTypes.ROLE_MENUBAR,controlTypes.ROLE_MENUITEM):
 			obj.description=None
 		if role in (controlTypes.ROLE_TREEVIEW,controlTypes.ROLE_TREEVIEWITEM,controlTypes.ROLE_LIST,controlTypes.ROLE_LISTITEM):
-			obj.reportFocusNeedsIAccessibleFocusState=False
+			obj.shouldAllowIAccessibleFocusEvent=True
 		controlID=obj.windowControlID
 		className=obj.windowClassName
 		if (className=="SUPERGRID" and controlID==4704) or (className=="rctrl_renwnd32" and controlID==109):



More information about the Nvda-dev mailing list