a11y: Notify ATK_STATE_SHOWING state change

https://bugzilla.gnome.org/show_bug.cgi?id=648633
This commit is contained in:
Alejo Pacin 2011-08-04 12:02:52 +02:00 committed by Alejandro Piñeiro
parent 91ace65cae
commit 694649e50c

View File

@ -1203,6 +1203,11 @@ cally_actor_real_notify_clutter (GObject *obj,
state = ATK_STATE_VISIBLE;
value = CLUTTER_ACTOR_IS_VISIBLE (actor);
}
else if (g_strcmp0 (pspec->name, "mapped") == 0)
{
state = ATK_STATE_SHOWING;
value = CLUTTER_ACTOR_IS_MAPPED (actor);
}
else if (g_strcmp0 (pspec->name, "reactive") == 0)
{
state = ATK_STATE_SENSITIVE;