[orca] Fix a bug in the state change notifiers



commit bbbdc2c2f19b8997e6c9f279f86f63b3eeede6f4
Author: Joanmarie Diggs <jdiggs igalia com>
Date:   Wed May 30 22:29:31 2012 -0400

    Fix a bug in the state change notifiers

 src/orca/scripts/default.py |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)
---
diff --git a/src/orca/scripts/default.py b/src/orca/scripts/default.py
index 874ba52..a3e019b 100644
--- a/src/orca/scripts/default.py
+++ b/src/orca/scripts/default.py
@@ -6000,7 +6000,9 @@ state_change_notifiers[pyatspi.ROLE_CHECK_BOX]       = ("checked",
                                                         "indeterminate",
                                                         None)
 state_change_notifiers[pyatspi.ROLE_PANEL]           = ("showing", None)
-state_change_notifiers[pyatspi.ROLE_LABEL]           = ("showing", None)
+state_change_notifiers[pyatspi.ROLE_LABEL]           = ("showing",
+                                                        "expanded",
+                                                        None)
 state_change_notifiers[pyatspi.ROLE_NOTIFICATION]    = ("showing", None)
 state_change_notifiers[pyatspi.ROLE_PUSH_BUTTON]     = ("expanded", None)
 state_change_notifiers[pyatspi.ROLE_RADIO_BUTTON]    = ("checked", None)
@@ -6011,4 +6013,3 @@ state_change_notifiers[pyatspi.ROLE_TABLE_CELL]      = ("checked",
                                                         "expanded",
                                                         None)
 state_change_notifiers[pyatspi.ROLE_LIST_ITEM]       = ("expanded", None)
-state_change_notifiers[pyatspi.ROLE_LABEL]           = ("expanded", None)



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