From 75768a4d0097c1892a4cb0f634d76fdc7b400664 Mon Sep 17 00:00:00 2001 From: Colomban Wendling Date: Mon, 20 Feb 2017 17:39:40 +0100 Subject: [PATCH] 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 --- gtk/a11y/gtkwidgetaccessible.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gtk/a11y/gtkwidgetaccessible.c b/gtk/a11y/gtkwidgetaccessible.c index ffa42a278a..3b44abaa26 100644 --- a/gtk/a11y/gtkwidgetaccessible.c +++ b/gtk/a11y/gtkwidgetaccessible.c @@ -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)