[orca] Present the new mouse-review object's string if it is an editable text area



commit 99ffd9a749eb157a0e96cb8da5eb305d54ec172f
Author: Joanmarie Diggs <jdiggs igalia com>
Date:   Fri Jul 12 13:20:45 2019 -0400

    Present the new mouse-review object's string if it is an editable text area

 src/orca/mouse_review.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
---
diff --git a/src/orca/mouse_review.py b/src/orca/mouse_review.py
index 1bc824328..7661935ab 100644
--- a/src/orca/mouse_review.py
+++ b/src/orca/mouse_review.py
@@ -287,7 +287,8 @@ class _ItemContext:
         if self._obj and self._obj != prior._obj:
             priorObj = prior._obj or self._getContainer()
             self._script.presentObject(self._obj, priorObj=priorObj, inMouseReview=True)
-            return True
+            if not self._script.utilities.isEditableTextArea(self._obj):
+                return True
 
         if self._string != prior._string and self._string.present():
             return True


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