diff options
author | Claudio Saavedra <csaavedra@igalia.com> | 2013-04-29 23:57:29 +0800 |
---|---|---|
committer | Claudio Saavedra <csaavedra@igalia.com> | 2013-04-29 23:57:29 +0800 |
commit | e7272a72ef2a9a1bb48ae311283d7a14b54dc865 (patch) | |
tree | 5ed150b8f033e872a4d02c518ac98ad24549cfcf | |
parent | ba3427ea23fe1123abdffe66ce38adc46ad20f93 (diff) | |
download | gsoc2013-epiphany-e7272a72ef2a9a1bb48ae311283d7a14b54dc865.tar gsoc2013-epiphany-e7272a72ef2a9a1bb48ae311283d7a14b54dc865.tar.gz gsoc2013-epiphany-e7272a72ef2a9a1bb48ae311283d7a14b54dc865.tar.bz2 gsoc2013-epiphany-e7272a72ef2a9a1bb48ae311283d7a14b54dc865.tar.lz gsoc2013-epiphany-e7272a72ef2a9a1bb48ae311283d7a14b54dc865.tar.xz gsoc2013-epiphany-e7272a72ef2a9a1bb48ae311283d7a14b54dc865.tar.zst gsoc2013-epiphany-e7272a72ef2a9a1bb48ae311283d7a14b54dc865.zip |
ephy-embed: do not expand the top_widgets_vbox
Otherwise they end up using half the screen.
-rw-r--r-- | embed/ephy-embed.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/embed/ephy-embed.c b/embed/ephy-embed.c index cc8503032..01e10b5b2 100644 --- a/embed/ephy-embed.c +++ b/embed/ephy-embed.c @@ -806,7 +806,7 @@ ephy_embed_add_top_widget (EphyEmbed *embed, GtkWidget *widget, gboolean destroy } gtk_box_pack_end (embed->priv->top_widgets_vbox, - GTK_WIDGET (widget), TRUE, TRUE, 0); + GTK_WIDGET (widget), FALSE, FALSE, 0); } /** |