diff options
Diffstat (limited to 'embed')
-rw-r--r-- | embed/ephy-web-view.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/embed/ephy-web-view.c b/embed/ephy-web-view.c index 61c1fe1d3..e98e13d28 100644 --- a/embed/ephy-web-view.c +++ b/embed/ephy-web-view.c @@ -1196,6 +1196,9 @@ hovering_over_link_cb (EphyWebView *web_view, static void ephy_web_view_constructed (GObject *object) { + if (G_OBJECT_CLASS (ephy_web_view_parent_class)->constructed) + G_OBJECT_CLASS (ephy_web_view_parent_class)->constructed (object); + /* Use full content zooming by default */ /* FIXME: we could make this configurable through GSettings, or have * different keys for text and full content zooming. AFAIK you can |