mirror of
https://github.com/brl/mutter.git
synced 2024-11-23 00:20:42 -05:00
a11y: Notify ATK_STATE_SHOWING state change
https://bugzilla.gnome.org/show_bug.cgi?id=648633
This commit is contained in:
parent
91ace65cae
commit
694649e50c
@ -1203,6 +1203,11 @@ cally_actor_real_notify_clutter (GObject *obj,
|
|||||||
state = ATK_STATE_VISIBLE;
|
state = ATK_STATE_VISIBLE;
|
||||||
value = CLUTTER_ACTOR_IS_VISIBLE (actor);
|
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)
|
else if (g_strcmp0 (pspec->name, "reactive") == 0)
|
||||||
{
|
{
|
||||||
state = ATK_STATE_SENSITIVE;
|
state = ATK_STATE_SENSITIVE;
|
||||||
|
Loading…
Reference in New Issue
Block a user