forked from AuroraMiddleware/gtk
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:
parent
492469a94a
commit
75768a4d00
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user