[orca] Ensure we present the correct row when navigating to table with missing rows



commit 90b393ae63ee29b47957f401b5a05eb4ae579835
Author: Joanmarie Diggs <jdiggs igalia com>
Date:   Tue May 5 14:12:47 2020 -0400

    Ensure we present the correct row when navigating to table with missing rows
    
    getShowingCellsInSameRow() uses getAccessibleAt() which means it needs
    the rendered coordinates; not the ones potentially overridden by the
    author via ARIA.

 src/orca/script_utilities.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/src/orca/script_utilities.py b/src/orca/script_utilities.py
index f7c77fdff..4f814e662 100644
--- a/src/orca/script_utilities.py
+++ b/src/orca/script_utilities.py
@@ -4568,7 +4568,7 @@ class Utilities:
             debug.println(debug.LEVEL_INFO, msg, True)
             return []
 
-        row, column = self.coordinatesForCell(obj)
+        row, column = self.coordinatesForCell(obj, False)
         if row == -1:
             return []
 


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