[Nvda-dev] commit r3430 - in trunk: source/appModules user_docs/en

NVDA Subversion svn at nvda-project.org
Wed Dec 9 02:49:11 UTC 2009


Author: bzr
Date: Wed Dec  9 02:49:08 2009
New Revision: 3430

Log:
explorer app module: Nuke the extremely verbose keyboard help message in the Windows 7 Start menu.

Modified:
   trunk/source/appModules/explorer.py
   trunk/user_docs/en/whats new.txt

Modified: trunk/source/appModules/explorer.py
==============================================================================
--- trunk/source/appModules/explorer.py	(original)
+++ trunk/source/appModules/explorer.py	Wed Dec  9 02:49:08 2009
@@ -44,6 +44,8 @@
 		if obj.windowClassName == "DV2ControlHost" and obj.role == controlTypes.ROLE_PANE:
 			# Windows Vista/7 start menu.
 			obj.isPresentableFocusAncestor = True
+			# In Windows 7, the description of this pane is extremely verbose help text, so nuke it.
+			obj.description = None
 
 	def event_gainFocus(self, obj, nextHandler):
 		if obj.windowClassName == "ToolbarWindow32" and obj.role == controlTypes.ROLE_MENUITEM and obj.parent.role == controlTypes.ROLE_MENUBAR and eventHandler.isPendingEvents("gainFocus"):

Modified: trunk/user_docs/en/whats new.txt
==============================================================================
--- trunk/user_docs/en/whats new.txt	(original)
+++ trunk/user_docs/en/whats new.txt	Wed Dec  9 02:49:08 2009
@@ -10,6 +10,7 @@
 	* Arrow keys can now be used in the Web formator window to navigate and read the text. (#452)
 
 === Changes ===
+	* The extremely verbose keyboard help message in the Windows 7 Start menu is no longer reported.
 
 === Bug Fixes ===
 	* NVDA no longer fails to start if UI Automation support appears to be available but fails to initialise for some reason. (#483)



More information about the Nvda-dev mailing list