[orca] Eliminate double presentation of inferred label
- From: Joanmarie Diggs <joanied src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [orca] Eliminate double presentation of inferred label
- Date: Sun, 8 May 2016 18:26:44 +0000 (UTC)
commit dff2a72277c1dc5ea8ddacfe20183e8b64e13ac0
Author: Joanmarie Diggs <jdiggs igalia com>
Date: Sun May 8 14:24:55 2016 -0400
Eliminate double presentation of inferred label
src/orca/scripts/web/script_utilities.py | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/orca/scripts/web/script_utilities.py b/src/orca/scripts/web/script_utilities.py
index 7dc2381..498deee 100644
--- a/src/orca/scripts/web/script_utilities.py
+++ b/src/orca/scripts/web/script_utilities.py
@@ -2346,7 +2346,7 @@ class Utilities(script_utilities.Utilities):
return False
rv = self._shouldInferLabelFor.get(hash(obj))
- if rv:
+ if rv and not self._script._lastCommandWasCaretNav:
return not self._script.inSayAll()
if rv == False:
return rv
@@ -2361,7 +2361,7 @@ class Utilities(script_utilities.Utilities):
else:
if name:
rv = False
- else:
+ elif not rv:
roles = [pyatspi.ROLE_CHECK_BOX,
pyatspi.ROLE_COMBO_BOX,
pyatspi.ROLE_ENTRY,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]