[orca] Don't read the full row (as a row) if caret navigation is being used
- From: Joanmarie Diggs <joanied src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [orca] Don't read the full row (as a row) if caret navigation is being used
- Date: Mon, 10 Feb 2020 22:06:22 +0000 (UTC)
commit 15f21dfa03b3db0d8a147f47390a60e975fe9164
Author: Joanmarie Diggs <jdiggs igalia com>
Date: Mon Feb 10 23:04:59 2020 +0100
Don't read the full row (as a row) if caret navigation is being used
This causes us to repeat row contents.
src/orca/scripts/web/script_utilities.py | 4 ++++
1 file changed, 4 insertions(+)
---
diff --git a/src/orca/scripts/web/script_utilities.py b/src/orca/scripts/web/script_utilities.py
index df25ef377..937b12d7e 100644
--- a/src/orca/scripts/web/script_utilities.py
+++ b/src/orca/scripts/web/script_utilities.py
@@ -2578,6 +2578,10 @@ class Utilities(script_utilities.Utilities):
if self.isGridDescendant(obj):
return not self._script.inFocusMode()
+ # TODO - JD: This is private.
+ if self._script._lastCommandWasCaretNav:
+ return False
+
return True
def isEntryDescendant(self, obj):
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]