[orca] Fix for bug 672461 - Orca now presents the full file list when the file chooser is opened
- From: Joanmarie Diggs <joanied src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [orca] Fix for bug 672461 - Orca now presents the full file list when the file chooser is opened
- Date: Wed, 4 Apr 2012 09:52:01 +0000 (UTC)
commit c26bb2120b84ab9b605889e2f0b88fe1d69ed68f
Author: Joanmarie Diggs <jdiggs igalia com>
Date: Wed Apr 4 05:49:05 2012 -0400
Fix for bug 672461 - Orca now presents the full file list when the file chooser is opened
src/orca/scripts/default.py | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
---
diff --git a/src/orca/scripts/default.py b/src/orca/scripts/default.py
index 2f4adf2..05c42de 100644
--- a/src/orca/scripts/default.py
+++ b/src/orca/scripts/default.py
@@ -3612,6 +3612,12 @@ class Script(script.Script):
if event.source.getRole() == pyatspi.ROLE_SLIDER:
return
+ state = event.source.getState()
+ if event.source.getRole() == pyatspi.ROLE_TABLE_CELL \
+ and not state.contains(pyatspi.STATE_FOCUSED) \
+ and not state.contains(pyatspi.STATE_SELECTED):
+ return
+
self.updateBraille(event.source)
if event.source.getRole() == pyatspi.ROLE_SPIN_BUTTON:
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]