diff --git a/clutter/cally/cally-actor.c b/clutter/cally/cally-actor.c index 40f8d6ecf..b3bf24f70 100644 --- a/clutter/cally/cally-actor.c +++ b/clutter/cally/cally-actor.c @@ -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;