[orca] Remove extraneous presentation of replaced object



commit bc734186d12656efa09d3e95ebf221a6779702d0
Author: Joanmarie Diggs <jdiggs igalia com>
Date:   Tue Aug 20 15:55:41 2019 -0400

    Remove extraneous presentation of replaced object
    
    We now do this presentation in onChildrenChanged().

 src/orca/scripts/web/script.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
---
diff --git a/src/orca/scripts/web/script.py b/src/orca/scripts/web/script.py
index 5f5c74093..f9702d7d1 100644
--- a/src/orca/scripts/web/script.py
+++ b/src/orca/scripts/web/script.py
@@ -1801,8 +1801,7 @@ class Script(default.Script):
 
             obj, offset = self.utilities.searchForCaretContext(event.source)
             if obj:
-                notify = self.utilities.inFindContainer(orca_state.locusOfFocus) \
-                    or self.utilities.isFocusModeWidget(obj)
+                notify = self.utilities.inFindContainer(orca_state.locusOfFocus)
                 msg = "WEB: Updating focus and context to %s, %i" % (obj, offset)
                 debug.println(debug.LEVEL_INFO, msg, True)
                 orca.setLocusOfFocus(event, obj, notify)


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