[orca] Remove table row from focus-mode widget roles; grid logic should handle it



commit 41db4e3dfe95502a596c670575d3079a31f2ed26
Author: Joanmarie Diggs <jdiggs igalia com>
Date:   Tue Apr 23 18:08:34 2019 -0400

    Remove table row from focus-mode widget roles; grid logic should handle it
    
    The focusModeRoles list contains roles which may be focus-mode or may not
    be. The decision is based on whether or not the role is a text-block element.
    A table row will never be a text block element. In addition, we have logic
    which treats all grid descendants as focus-mode widgets, so that should
    handle the most common use case for table row being a focus-mode widget.

 src/orca/scripts/web/script_utilities.py | 1 -
 1 file changed, 1 deletion(-)
---
diff --git a/src/orca/scripts/web/script_utilities.py b/src/orca/scripts/web/script_utilities.py
index e735b268a..cc695a9f5 100644
--- a/src/orca/scripts/web/script_utilities.py
+++ b/src/orca/scripts/web/script_utilities.py
@@ -1729,7 +1729,6 @@ class Utilities(script_utilities.Utilities):
                           pyatspi.ROLE_SPIN_BUTTON,
                           pyatspi.ROLE_TOOL_BAR,
                           pyatspi.ROLE_TABLE_CELL,
-                          pyatspi.ROLE_TABLE_ROW,
                           pyatspi.ROLE_TABLE,
                           pyatspi.ROLE_TREE_ITEM,
                           pyatspi.ROLE_TREE_TABLE,


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]