[orca/gnome-3-16] Eliminate false positive identifying Thunderbird spellcheck dialog
- From: Joanmarie Diggs <joanied src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [orca/gnome-3-16] Eliminate false positive identifying Thunderbird spellcheck dialog
- Date: Mon, 7 Sep 2015 16:47:47 +0000 (UTC)
commit 8334a2dcc518299eb2a6396a31ed34edcf1bf900
Author: Joanmarie Diggs <jdiggs igalia com>
Date: Mon Sep 7 12:46:15 2015 -0400
Eliminate false positive identifying Thunderbird spellcheck dialog
src/orca/scripts/apps/Thunderbird/spellcheck.py | 9 ++++++++-
1 files changed, 8 insertions(+), 1 deletions(-)
---
diff --git a/src/orca/scripts/apps/Thunderbird/spellcheck.py b/src/orca/scripts/apps/Thunderbird/spellcheck.py
index 317067c..1c8f9a0 100644
--- a/src/orca/scripts/apps/Thunderbird/spellcheck.py
+++ b/src/orca/scripts/apps/Thunderbird/spellcheck.py
@@ -58,7 +58,14 @@ class SpellCheck(spellcheck.SpellCheck):
return False
def _isCandidateWindow(self, window):
- return window and window.getRole() == pyatspi.ROLE_DIALOG
+ if not (window and window.getRole() == pyatspi.ROLE_DIALOG):
+ return False
+
+ isPageTabList = lambda x: x and x.getRole() == pyatspi.ROLE_PAGE_TAB_LIST
+ if pyatspi.findDescendant(window, isPageTabList):
+ return False
+
+ return True
def _findChangeToEntry(self, root):
isEntry = lambda x: x and x.getRole() == pyatspi.ROLE_ENTRY \
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]