st/icon: Chain up to parent vfunc in override

GObject vfunc overrides are always supposed to call their parent vfunc,
this was forgotten here, so fix it.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/953>
This commit is contained in:
Jonas Dreßler 2019-11-14 09:55:23 +01:00 committed by Marge Bot
parent 0b1dfbf6f3
commit f6553ef5f0

View File

@ -255,6 +255,8 @@ st_icon_style_changed (StWidget *widget)
if (should_update)
st_icon_update (self);
ST_WIDGET_CLASS (st_icon_parent_class)->style_changed (widget);
}
static void