[orca] Web: Fix braille presentation of grid cell in browse mode



commit ce8204518ab510f24c6833e0c793cb81690685e4
Author: Joanmarie Diggs <jdiggs igalia com>
Date:   Fri May 21 11:23:21 2021 +0200

    Web: Fix braille presentation of grid cell in browse mode
    
    The web braille generator was defering to the default braille generator
    for presentation of grid cell content when in browse mode. We stopped
    doing that for speech so that additional web-specific logic could be
    used to ensure we presented something reasonable. We should have done
    the same for braille. This commit makes that change so that we're
    speaking and brailling the same objects for grid cells in browse mode.

 src/orca/scripts/web/braille_generator.py | 3 ---
 1 file changed, 3 deletions(-)
---
diff --git a/src/orca/scripts/web/braille_generator.py b/src/orca/scripts/web/braille_generator.py
index 07a548fb6..fda12b1b8 100644
--- a/src/orca/scripts/web/braille_generator.py
+++ b/src/orca/scripts/web/braille_generator.py
@@ -204,9 +204,6 @@ class BrailleGenerator(braille_generator.BrailleGenerator):
         if not self._script.utilities.inDocumentContent(obj):
             return super()._generateTableCellRow(obj, **args)
 
-        if not self._script.inFocusMode():
-            return super()._generateTableCellRow(obj, **args)
-
         if not self._script.utilities.shouldReadFullRow(obj):
             return self._generateRealTableCell(obj, **args)
 


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