Fix updating the widget accessible description when using its tooltip

We need to notify ATK the description changed when the tooltip text associated
with the widget changes and gtk_widget_accessible_get_description() would use
it as the description.

https://bugzilla.gnome.org/show_bug.cgi?id=779009
This commit is contained in:
Colomban Wendling 2017-02-20 17:39:40 +01:00 committed by Matthias Clasen
parent 492469a94a
commit 75768a4d00

View File

@ -483,6 +483,9 @@ gtk_widget_accessible_notify_gtk (GObject *obj,
{
gtk_widget_accessible_update_tooltip (GTK_WIDGET_ACCESSIBLE (atk_obj),
widget);
if (atk_obj->description == NULL)
g_object_notify (G_OBJECT (atk_obj), "accessible-description");
return;
}
else if (g_strcmp0 (pspec->name, "visible") == 0)