From e9a974f4f6e37139cde66442903fc5e32fca8be1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timm=20B=C3=A4der?= Date: Fri, 14 Oct 2016 15:58:48 +0200 Subject: [PATCH] buttonaccessible: Stop looking at the button's image --- gtk/a11y/gtkbuttonaccessible.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/a11y/gtkbuttonaccessible.c b/gtk/a11y/gtkbuttonaccessible.c index 4873399e05..90fb259511 100644 --- a/gtk/a11y/gtkbuttonaccessible.c +++ b/gtk/a11y/gtkbuttonaccessible.c @@ -60,7 +60,7 @@ get_image_from_button (GtkWidget *button) { GtkWidget *image; - image = gtk_button_get_image (GTK_BUTTON (button)); + image = gtk_bin_get_child (GTK_BIN (button)); if (GTK_IS_IMAGE (image)) return image;