commit/EasyTableNavigator: josephsl: Fix an issue where errors were generated in WwN control (spell check in Outlook)

  • From: commits-noreply@xxxxxxxxxxxxx
  • To: nvda-addons-commits@xxxxxxxxxxxxx
  • Date: Sun, 19 Apr 2015 15:37:00 -0000

1 new commit in EasyTableNavigator:

https://bitbucket.org/nvdaaddonteam/easytablenavigator/commits/218f6f4ed1e5/
Changeset: 218f6f4ed1e5
Branch: stable
User: josephsl
Date: 2015-04-19 15:36:38+00:00
Summary: Fix an issue where errors were generated in WwN control (spell
check in Outlook)

Affected #: 3 files

diff --git a/addon/globalPlugins/easyTableNavigator.py
b/addon/globalPlugins/easyTableNavigator.py
index e1a097e..173d4ae 100644
--- a/addon/globalPlugins/easyTableNavigator.py
+++ b/addon/globalPlugins/easyTableNavigator.py
@@ -57,7 +57,10 @@ def tableNavAvailable(obj=None):
except LookupError, WindowsError:
return False
elif isinstance(focus, TNDocObjs):
- testFunc = TNDocObjTesters[focus.windowClassName]
+ try:
+ testFunc = TNDocObjTesters[focus.windowClassName]
+ except KeyError:
+ return False
return testFunc(focus)
return False


diff --git a/buildVars.py b/buildVars.py
index 2789035..2f81c6f 100644
--- a/buildVars.py
+++ b/buildVars.py
@@ -19,7 +19,7 @@ addon_info = {
# Translators: Long description to be shown for this add-on on add-on
information from add-ons manager
"addon_description" : _("""Allows using just arrow keys to navigate
between table cells via a dedicated layer."""),
# version
- "addon_version" : "1.0",
+ "addon_version" : "1.1",
# Author(s)
"addon_author" : u"Joseph Lee <joseph.lee22590@xxxxxxxxx>",
# URL for the add-on documentation support

diff --git a/readme.md b/readme.md
index b31f649..61ea217 100644
--- a/readme.md
+++ b/readme.md
@@ -15,6 +15,10 @@ Currently supported tables are:

* Toggles table navigator layer on and off (unassigned).

+## Changes for 1.1
+
+* Fixed an issue where errors might be heard when spell checking a message in
Outlook.
+
## Changes for 1.0

* Initial release.

Repository URL: https://bitbucket.org/nvdaaddonteam/easytablenavigator/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.

Other related posts:

  • » commit/EasyTableNavigator: josephsl: Fix an issue where errors were generated in WwN control (spell check in Outlook) - commits-noreply