aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClaudio Saavedra <csaavedra@igalia.com>2013-04-29 23:57:29 +0800
committerClaudio Saavedra <csaavedra@igalia.com>2013-04-29 23:57:29 +0800
commite7272a72ef2a9a1bb48ae311283d7a14b54dc865 (patch)
tree5ed150b8f033e872a4d02c518ac98ad24549cfcf
parentba3427ea23fe1123abdffe66ce38adc46ad20f93 (diff)
downloadgsoc2013-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.c2
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);
}
/**