[orca] Disable caret navigation in focusable table cells
- From: Joanmarie Diggs <joanied src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [orca] Disable caret navigation in focusable table cells
- Date: Thu, 7 Aug 2014 15:02:22 +0000 (UTC)
commit c3985ddec3c1ba415d1239b80158a2628a4e20a4
Author: Joanmarie Diggs <jdiggs igalia com>
Date: Thu Aug 7 11:01:39 2014 -0400
Disable caret navigation in focusable table cells
src/orca/scripts/toolkits/Gecko/script.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/orca/scripts/toolkits/Gecko/script.py b/src/orca/scripts/toolkits/Gecko/script.py
index bcc02a9..7044b0d 100644
--- a/src/orca/scripts/toolkits/Gecko/script.py
+++ b/src/orca/scripts/toolkits/Gecko/script.py
@@ -1818,7 +1818,7 @@ class Script(default.Script):
elif role == pyatspi.ROLE_LIST_ITEM:
weHandleIt = not obj.getState().contains(pyatspi.STATE_FOCUSED)
- elif role == pyatspi.ROLE_LIST:
+ elif role in [pyatspi.ROLE_LIST, pyatspi.ROLE_TABLE_CELL]:
weHandleIt = not obj.getState().contains(pyatspi.STATE_FOCUSABLE)
elif role in [pyatspi.ROLE_MENU, pyatspi.ROLE_MENU_ITEM]:
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]