From: Matthias Clasen Date: Sat, 31 Jul 2021 11:46:54 +0000 (-0400) Subject: iconhelper: Fix the paintable implementation X-Git-Tag: archive/raspbian/4.4.1+ds1-2+rpi1^2~18^2~1^2~48^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=744955753f45ffc25069b3ea858d842bd334acf8;p=gtk4.git iconhelper: Fix the paintable implementation get_current_image was recursing due to an obvious typo. Fixes: #4140 --- diff --git a/gtk/gtkiconhelper.c b/gtk/gtkiconhelper.c index e4ff62a3c1..80cbca7474 100644 --- a/gtk/gtkiconhelper.c +++ b/gtk/gtkiconhelper.c @@ -294,7 +294,7 @@ gtk_icon_helper_paintable_get_current_image (GdkPaintable *paintable) if (self->paintable == NULL) return NULL; - return gtk_icon_helper_paintable_get_current_image (self->paintable); + return gdk_paintable_get_current_image (self->paintable); } static int